我正在使用 UITextView 并在我的视图控制器中添加了 UITextInputDelegate。我已经实现了 textDidChange 和 dictationRecordingDidEnd 方法。永远不会调用 textDidChange 和 dictationRecordingDidEnd。请帮忙。
在 MyViewController.h 文件中
@interface MyViewController : UIViewController <UITextViewDelegate, UITextInputDelegate>
{
}
在 MyViewController.m 文件中
- (void) textDidChange:(id<UITextInput>)textInput
{
}
- (void)dictationRecordingDidEnd
{
}
- (void)dictationRecognitionFailed
{
textViewResults.text = @"Dictation Failed";
}