How do I programmatically assign a method (observer?) to the didEndOnExit event of a UITextField object?
didEndOnExit
UITextField
This is easy enough to do in IB bu
In your view controller implement the following method:
- (void)textFieldDidEndEditing:(UITextField *)textField{ //do stuff }
Don't forget to set the delegate in viewDidLoad or the initializer:
myTextField.delegate = self;