New Search APIs in iOS 13
Published on
iOS has always provided interesting search APIs, but they have always been limited and doing the most interesting tasks required you to either write your own implementation or use private APIs.
iOS 13 has provided some very nice improvements to the UI search APIs. In this article we will talk about two of them.
UISearchBar finally exposes its text field
I have been using UISearchController
and UISearchBar
for a very long time, and I have always found it bizarre that Apple didn’t expose its underlying text field property. As of iOS 13, the search bar finally exposes it, in the form of a UISearchTextField
object.