I have user interface with UISearchBar
and I implement the UISearchBarDelegate
's searchBarSearchButtonClicked:
to perform the search. I do not have a device with dictation support to test this, so I'm going to speculate here...
On devices with dictation support, I would like to perform the search as soon as the dictation ends, without requiring the user to hit the search button manually.
- Does this work out-of-the-box?
- Or do I need to handle it programmatically?
Since iOS 5.1, there are new methods in UITextInput
protocol and I could theoretically hook onto dictationRecordingDidEnd
. Is that the way to go?
UISearchBar
using dictation does not automatically trigger the Search (i.e.searchBarSearchButtonClicked
) on iPhone 4S? – Journalize