hiding keyboard ios [duplicate] hiding keyboard ios [duplicate] objective-c objective-c

hiding keyboard ios [duplicate]


If you want to hide the keyboard when you tap a button and you have more than one UITextFields in your view, then you should use:

[self.view endEditing:YES];

Tap anywhere on the view, and the keyboard will disappear.


Try this:

- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {     [[self view] endEditing:YES];}


You can also iterate through an array of views (such as your UIView's subviews) and manually resign the keyboard, this is good if you dont want to resign on ALL the subviews within your parent UIView.

- (void)viewDidLoad{    self.view.userInteractionEnabled = TRUE;    [super viewDidLoad];    // Do any additional setup after loading the view, typically from a nib.}-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{    //Iterate through your subviews, or some other custom array of views    for (UIView *view in self.view.subviews)        [view resignFirstResponder];}