My Application has a modal view controller, including a search bar. When the view comes up, I want the search bar to be focused. I tried [self.searchBar becomeFirstRespond
Write viewWillAppear
instad of viewDidAppear/viewDidLoad
.
BecauseviewWillAppear
method is call at the time of View will appear (in process), for more information about viewWillAppear read this official Document.
- (void)viewWillAppear:(BOOL)animated
{
[self.searchBar becomeFirstResponder];
[super viewWillAppear:animated];
}