searchBar not centered in navigationItem

496 Views Asked by At

Current status Current Status

I am doing it programmatically. I also tried to set it into TitleView, but it's not working. Code below:

        //searchBar
    let searchController = UISearchController(searchResultsController: nil)
    searchController.searchResultsUpdater = self
    searchController.obscuresBackgroundDuringPresentation = false
    searchController.searchBar.placeholder = "Search Players"
    navigationItem.searchController = searchController
    navigationItem.hidesSearchBarWhenScrolling = false
    definesPresentationContext = true

I also have a ScopeBar under the searchBar, when selected. If I do it like:

searchController.titleView = searchController.searchBar 

It goes in place, but I cannot select/tap the searchBar anymore.

3

There are 3 best solutions below

1
On

if your iOS version greater than ios11 or equal you should add like this

navigationItem.searchController = searchController

else

navigationItem.titleView = searchController.searchBar

and also you should give more detail

2
On

For me, your example works well, but maybe you canuse it.

   navigationItem.titleView = searchController.searchBar

You can insert search bar into navigation like here. Can you explain what's wrong with search bar in table view header? What isn't work?

0
On

One way to go would be using the bounds to set it to center manually. But on the searchbar activation(click) it would be again messed up and needed to be set again.

searchController.searchBar.bounds=CGRectInset(searchController.searchBar.frame, 0.0f, -2.5f);