Is there any way to detect cursor blinking in swift 4?
Actually, I wanna call the specific function after the user finished their editing, not while editing. i have used the function textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {}
, func textFieldShouldEndEditing(_ textField: UITextField) -> Bool {}
and all related functionalities. Those functionalities are called when the user typed 1 word but actually, I want to call the function after they typed the full words or chars they want.