Dismiss keyboard if user scrolls in “new 1:1 conversation” view.

// FREEBIE
This commit is contained in:
Matthew Chen 2017-04-06 15:44:36 -04:00 committed by Michael Kirk
parent dc174ad6f0
commit 554125aeeb
1 changed files with 7 additions and 0 deletions

View File

@ -783,6 +783,13 @@ NSString *const MessageComposeTableViewControllerCellContact = @"ContactTableVie
return 20;
}
#pragma mark - UIScrollViewDelegate
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
[self.searchController.searchBar resignFirstResponder];
}
@end
NS_ASSUME_NONNULL_END