自定义键盘:从输入视图中获取文本

时间:2014-12-06 20:24:17

标签: iphone ios8 ios-app-extension custom-keyboard

我开发了iOS8的自定义键盘应用程序。而且我无法从输入视图中获取文本。任何帮助将不胜感激 。  曾尝试使用

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

委托获取文字。但它返回null值。我没有其他想法,我可以从输入视图中获取文本 提前谢谢

1 个答案:

答案 0 :(得分:0)

我能够从iOS 8的自定义键盘的输入视图中获取字符串。这是将返回字符串

的代码行
    NSString *strBeforeCursor=[self.textDocumentProxy documentContextBeforeInput]; 
    NSString *strAfterCursor=[self.textDocumentProxy documentContextAfterInput]; 

感谢