How can I listen for unfocus event in UITextFiekd?
I would create a sort of handler that is activated when my text field lost the focus. For example, if I click into another part of the application, that listen registers the text inside the UITextField automatically.
Thank you.
There is a UITextFieldTextDidEndEditingNotification when the textfield resigns as first responder. You can also make use of the delegate method textFieldDidEndEditing:.