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
I would also add
searchController.hidesNavigationBarDuringPresentation = false searchController.delegate = self searchController.searchBar.delegate = self
See if assigning those delegates will help.