I have a search bar inside a navigation And I want it to shrink into navigation when it scrolls like Safari. Just like the photos below image what I need
this is my code but
class ViewController: UIViewController, UITextFieldDelegate, WKNavigationDelegate, WKUIDelegate , UISearchBarDelegate {
var searchBar:UISearchBar = UISearchBar(frame: CGRect(x: 0, y: 0, width: 440, height: 40))
override func viewDidLoad() {
super.viewDidLoad()
searchBar.delegate = self
searchBar.placeholder = "Search or enter website name"
self.navigationItem.titleView = searchBar
}
}