I'm trying to achieve the same effect as Apple's Contacts app (left screenshot). The cancel button in UISearchBar is enabled even when the keyboard is dismissed. My app behaves differently (right screenshot). The cancel button automatically becomes disabled when the keyboard is dismissed. The user is forced to tap the cancel button one time to enable it and then another time to actually trigger the dismissal. This is not good user experience. How would I always keep the cancel button enabled like Apple's Contacts app?
Technical Details:
I'm not using UISearchDisplayController
due to some design requirements. This is just a UISearchBar
with my own custom search controller. The cancel button is shown using [self.searchBar showsCancelButton:YES animated:YES]
. The keyboard is dismissed using [self.searchBar resignFirstResponder]
.
For Swift 4.0
You could do this:
BUT this is a pretty hackish method and I'm fairly certain it's generally frowned upon by Apple and could potentially lead to the app being rejected. As far as I know, there doesn't seem to be any other way to do what you're trying to do.
Since iOS 7 all the subview of UISearchBar are one level deeper. This should work:
Still hacky and can easily break in the next iOS version.
Call to
[self.searchBar resignFirstResponder]
will make the cancel button disabled. Hence, you should always update cancel button to enable after calling it.Objective-C
Swift
In my experience,
view.endEditing(true)
is the problem. Because it's also called.resignFirstResponder
if there's a UITextField inside the view, which is contained in UISearchBar.https://developer.apple.com/reference/uikit/uiview/1619630-endediting
Here's a simple way: