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

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

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

Loading…
Cancel
Save