Hide keyboard when scrolling in country code view.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent 2e49b77f60
commit 5a2d4ce625

@ -76,4 +76,10 @@ static NSString *const kUnwindToCountryCodeWasSelectedSegue = @"UnwindToCountryC
_countryCodes = [PhoneNumberUtil countryCodesForSearchTerm:searchText];
}
#pragma mark - UIScrollViewDelegate
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
[self.searchBar resignFirstResponder];
}
@end

Loading…
Cancel
Save