I placed searchController
's searchBar
in navigationItem
as the titleView
as follows:
self.navigationItem.titleView = self.searchController.searchBar;
Although it fits perfectly when it is not selected (cancel item is not shown), if it becomes first responder and cancel item appears next to the searchBar
, it slides under of the navigationItem
slightly. You can see the result below:
How can I fix this? Is there a workaround?