With iOS 11 Apple has redesigned the UISearchBar by making the corners rounder and the height bigger. Adding a UISearchBar to the navigationBar is pretty simple by just sett
You can change the height of UISearchBar in iOS 11 by adding a constraint of height 44:
if #available(iOS 11.0, *) { searchBar.heightAnchor.constraint(equalToConstant: 44.0).isActive = true }