Skip to content

Instantly share code, notes, and snippets.

@lennypham
Last active December 14, 2015 23:08
Show Gist options
  • Save lennypham/5163401 to your computer and use it in GitHub Desktop.
Save lennypham/5163401 to your computer and use it in GitHub Desktop.
Check for DONE key in iOS keyboard for UITextView
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{
if ([text isEqual:@"\n"])
{
[textView resignFirstResponder];
return NO;
}
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment