Skip to content

Instantly share code, notes, and snippets.

@prabirshrestha
Created September 25, 2012 18:55
Show Gist options
  • Save prabirshrestha/3783736 to your computer and use it in GitHub Desktop.
Save prabirshrestha/3783736 to your computer and use it in GitHub Desktop.
dismiss ios keyboard on tap
// in view did load
UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissKeyboard)];
tapGestureRecognizer.cancelsTouchesInView = NO;
[self.tableView addGestureRecognizer:tapGestureRecognizer];
- (void)dismissKeyboard {
[self.view endEditing:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment