I\'ve added a UISearchController to my application and set it\'s searchBar to the titleView of my navigationItem.
titleView
navigationItem
This works but I am seeing t
This worked for me (iOS 10):
- (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; self.searchController.searchBar.showsCancelButton = NO; }