Skip to content

Instantly share code, notes, and snippets.

@trevorwang
Forked from Adam0101/DismissMe.m
Created December 5, 2012 02:49
Show Gist options
  • Save trevorwang/4211690 to your computer and use it in GitHub Desktop.
Save trevorwang/4211690 to your computer and use it in GitHub Desktop.
Example of a simple way to dismiss the iphone keyboard when a user clicks anywhere but the textfield
- (void)touchesEnded: (NSSet *)touches withEvent: (UIEvent *)event {
for (UIView* view in self.view.subviews) {
if ([view isKindOfClass:[UITextField class]])
[view resignFirstResponder];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment