I recently updated to Xcode 11.1 and the update came along with a lot of random changes to the story board. I have fixed all but one.
The navigation bar is completely transparent when the large title is used.
As soon as I scroll down on the other hand, the navigation bar uses the smaller title as intended and is visible.
When I take a look at the storyboard, the navigation controller's navigation bar is not visible.
I have played around with the attributes inspector to no avail. I don't believe that this issue is caused by the search bar but this is how I implimented it:
searchController declaration:
let searchController = UISearchController(searchResultsController: nil)
In viewDidLoad():
searchController.searchBar.delegate = self
searchController.searchResultsUpdater = self
searchController.obscuresBackgroundDuringPresentation = false
searchController.searchBar.placeholder = "Search \(clubs.count) clubs"
navigationItem.searchController = searchController
navigationItem.hidesSearchBarWhenScrolling = true