I noticed that in the App Store app, the UISearchBar
they're using is larger. (see attached) — Currently when I compile for iOS 11b9 using Xcode 9b6, it still uses the old style, which is too small and is clipped by the status bar.
Is there some clean way to enable/mimic this larger variant of UISearchBar
, while still maintaining backwards compatibility with older iOS versions?
I did find after the iPhone X announcement (and subsequent video additions to the Developer site) that there is a bit of a workaround necessarily: https://developer.apple.com/videos/play/fall2017/201
For iOS 11+ only:
UISearchController
to the "navigationItem" not theUIViewController
itself. Then set it to be "active" (=true
).hidesNavigationBarDuringPresentation
istrue
.... Honestly it seems like this was a bit of an afterthought, but it does work and is good enough for now.