I have a user interface with UISearchBar and I am implementing UISearchBarDelegate searchBarSearchButtonClicked: to do a search. I don't have a dictation enabled device to test this, so I will reflect here ...
On dictation-enabled devices, I would like to search as soon as the dictation ends, without requiring the user to press the search button manually.
- Does it work out of the box?
- Or do I need to process it programmatically?
Starting with iOS 5.1, there are new methods in the UITextInput protocol, and I could theoretically connect to dictationRecordingDidEnd . Is that the way?
Palimondo
source share