Make UISearchController search bar automatically active
I've implemented a UISearchController with its search bar in a navigatiom bar and I would like to make the search bar active when the view is loaded. When I say active, I mean that the keyboard appears and the user can type his/her search without tap the search bar. I initialised the UISearchController with the following code: - (void)viewDidLoad { self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil]; [self.searchController setSearchResultsUpdater:self]; [self.searchController setDimsBackgroundDuringPresentation:NO]; [self.searchController