Hide keyboard when scrolling the contacts list in new/edit group view.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent 3f110dc820
commit 210bd704e0

@ -403,4 +403,10 @@ static NSString *const kUnwindToMessagesViewSegue = @"UnwindToMessagesViewSegue"
return NO; return NO;
} }
#pragma mark - UIScrollViewDelegate
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
[self.nameGroupTextField resignFirstResponder];
}
@end @end

Loading…
Cancel
Save