Reputation:
Can I show the keyboard for UISearchbar
on viewWillAppear
method call without touching the UISearchbar
?
Upvotes: 12
Views: 4012
Reputation: 99
Working Solution:-
Don't use [self.searchController setActive:YES] before becomeFirstResponder.
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
dispatch_async(dispatch_get_global_queue(0, 0), ^{
dispatch_async(dispatch_get_main_queue(), ^{
//[self.searchController setActive:YES];
[self.searchController.searchBar becomeFirstResponder];
});
});
}
Upvotes: 1