如何在自定义键盘ios中的任何文本字段中获取插入的文本

时间:2018-01-17 06:45:13

标签: ios custom-keyboard

enter image description here

我正在ios中创建自定义键盘。还有一个问题我无法弄清楚如何获取完整的输入字符串。因为我希望在我的代码中使用该字符串用我的词典数据库进行映射,映射词将显示在我的集合视图中。

2 个答案:

答案 0 :(得分:0)

从按钮操作获取文本并使字符串成为您想要的内容。

NSString *someString;// Global
- (IBAction)characterButtonAction:(UIButton *)sender {
        someString = [someString stringByAppendingString:sender.titleLabel.text];
}

答案 1 :(得分:0)

或者您可以使用[self.textDocumentProxy documentContextBeforeInput]来获取整个当前字符串。 这将返回光标之前的字符串。