Skip to content

Instantly share code, notes, and snippets.

@paulstefanort
Created September 6, 2012 13:54
Show Gist options
  • Save paulstefanort/3656489 to your computer and use it in GitHub Desktop.
Save paulstefanort/3656489 to your computer and use it in GitHub Desktop.
Hide keyboard when leaving focus on iOS controls
@interface ViewController
@end
@implementation ViewController
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[firstControl resignFirstResponder];
[secondControl resignFirstResponder];
[thirdControl resignFirstResponder];
// ...
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment