dictationRecordingDidEnd never called

Posted by optme on Stack Overflow See other posts from Stack Overflow or by optme
Published on 2012-09-04T17:04:26Z Indexed on 2012/10/17 23:01 UTC
Read the original article Hit count: 494

Filed under:
|

I am using a UITextView and added UITextInputDelegate in my view controller. I have implemented textDidChange and dictationRecordingDidEnd methods. The textDidChange and dictationRecordingDidEnd are never called. Please help.

In MyViewController.h file

@interface MyViewController : UIViewController <UITextViewDelegate, UITextInputDelegate>
{

}

In MyViewController.m file

- (void) textDidChange:(id<UITextInput>)textInput
{

}

- (void)dictationRecordingDidEnd
{

}
- (void)dictationRecognitionFailed
{
    textViewResults.text = @"Dictation Failed";
}

© Stack Overflow or respective owner

Related posts about ios

Related posts about uitextview