我有UISearchBar的用户界面,我实现了UISearchBarDelegate的searchBarSearchButtonClicked:来执行搜索.我没有一个带有听写支持的设备来测试这个,所以我要在这里推测……
在具有听写支持的设备上,我想在听写结束后立即执行搜索,而无需用户手动点击搜索按钮.
>这是开箱即用的吗?
>或者我需要以编程方式处理它吗?
从iOS 5.1开始,UITextInput协议中有新的方法,理论上我可以挂钩到dictationRecordingDidEnd.这是要走的路吗?
解决方法
是的,您可能希望使用dictationRecordingDidEnd协议方法. Apple的文档说明这个关于
dictationRecordingingDidEnd:
Implement this optional method if you want to respond to the
completion of the recognition of a dictated phrase.