I have the following code in my app, specifically in viewDidLoad: that sets up my UISearchController.
viewDidLoad:
UISearchController
self.searchController = [[UISear
If you ViewController is inside a TabBarController then -
Instead of self.definesPresentationContext = YES;
self.definesPresentationContext = YES;
Use self.tabBarController.definesPresentationContext = YES;
self.tabBarController.definesPresentationContext = YES;
This worked for me in above scenario.