forked from organicmaps/organicmaps
[ios] Fixed delayed keyboard hiding when closing search view
This commit is contained in:
parent
1d4b85617e
commit
486d005a5c
1 changed files with 6 additions and 0 deletions
|
@ -100,6 +100,12 @@ static void OnSearchResultCallback(search::Result const & res, int queryId)
|
|||
g_searchVC = nil;
|
||||
}
|
||||
|
||||
- (void)viewWillDisappear:(BOOL)animated
|
||||
{
|
||||
// hide keyboard immediately
|
||||
[self.navigationItem.titleView resignFirstResponder];
|
||||
}
|
||||
|
||||
- (void)searchBar:(UISearchBar *)sender textDidChange:(NSString *)searchText
|
||||
{
|
||||
[self clearResults];
|
||||
|
|
Loading…
Add table
Reference in a new issue