
I thought i need only to setup an empty callback (ie IBAction) for "Did End On Exit" event of the UITextField (as IBOutlet) in the InterfaceBuilder!
Like this:
//header
@interface MyView : UIView
{
IBOutlet UITextField *name;
}
And the keyboard will be hidden after editing is complete.
And the keyboard will be hidden after editing ends.
- (IBAction)doneButtonOnKeyboardPressed: (id)sender;
//m-file
@implementation MyView
- (IBAction)doneButtonOnKeyboardPressed: (id)sender
{}
@end