[ios] Fixed delayed keyboard hiding when closing search view

This commit is contained in:
Alex Zolotarev 2011-08-24 13:12:13 +03:00 committed by Alex Zolotarev
parent 1d4b85617e
commit 486d005a5c

View file

@ -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];