Reputation: 16317
I would like to create a subclass of UITextView with a custom button to invoke Siri on (for its speech-to-text text entry). Is this possible? I don't mind if the keyboard is shown, I just want to provide my own button to turn on Siri.
Upvotes: 4
Views: 3680
Reputation: 40211
You can't do that unfortunately (as of iOS 6.0). The only way to use Siri is to use UITextFields
and let the user enter text by dictating to Siri.
Upvotes: 2