Answer the question
In order to leave comments, you need to log in
How to fix searchBar under navigationBar?
Hello! searchBar scrolls along with tableView. How to fix searchBar under navigationBar?
Answer the question
In order to leave comments, you need to log in
You most likely have it inside the TableView. Gotta get him out of there
Add searchBar as subview navigationBar
.
navigationController?.navigationBar.isTranslucent = false
navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .default)
navigationController?.navigationBar.barStyle = .black
navigationController?.navigationBar.barTintColor = UIColor.red
navigationController?.navigationBar.shadowImage = UIImage()
title = "User profile";
let searchBar = UISearchBar()
searchBar.placeholder = "Search"
searchBar.frame = CGRect(x: 0, y: 0, width: (navigationController?.view.bounds.size.width)!, height: 64)
searchBar.barStyle = .default
searchBar.isTranslucent = false
searchBar.barTintColor = UIColor.red
searchBar.backgroundImage = UIImage()
view.addSubview(searchBar)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question