I would like to transfer my search bar tableHeaderViewto a new approach to seamless search bar in iOS 11 by customizing navigationItem.searchController.
Since my navigation bar uses a custom background image, I am wondering how to apply the same background image to the search bar. I tried
[navigationBar setBackgroundImage:[UIImage imageNamed:@"NavigationBarPromptBackground"] forBarMetrics:UIBarMetricsDefaultPrompt];
[searchBar setBackgroundImage:[UIImage imageNamed:@"NavigationBarBackground"] forBarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];
to no avail. The search bar contains a standard navigation bar (if used barTintColor), but does not display a custom background image.
source
share