4

我正在努力写作Custom Keyboard Extension

我正在寻找知道光标在哪里的方法UITextFieldUITextView......在CustomKeyboardExtension中......但我没有看到类似的东西。

我看到 SwiftKey 应用程序 ( http://swiftkey.com ) 可以做到这一点(或做类似的事情)。当我改变光标时,建议文本会改变(见下图)。

问:我们如何获得当前的文本选择?

...

更新:2014 年 9 月 29 日

好吧,我太傻了。我们可以使用documentContextBeforeInput,属性documentContextAfterInput方法。textDocumentProxy我认为“之前”,“之后”是时候了。其实就是位置的问题。

对不起大家!我浪费了你的时间:(

4

1 回答 1

1

创建 lastWordBeforeInput 方法...

-(NSString *) lastWordBeforeInput{
    NSArray *arrayOfSplitsString = [self.textDocumentProxy.documentContextBeforeInput componentsSeparatedByString:@" "];
    int countIndex = arrayOfSplitsString.count - 1;
    NSCharacterSet *ChSet = [NSCharacterSet alphanumericCharacterSet];
    NSCharacterSet *invertedChSet = [ChSet invertedSet];
    while (countIndex > 0) {
        NSString *lastWordOfSentance = [arrayOfSplitsString objectAtIndex:countIndex--];
        if ([[lastWordOfSentance stringByTrimmingCharactersInSet:invertedChSet] rangeOfCharacterFromSet:ChSet].location != NSNotFound) {
            return [lastWordOfSentance stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
        }
    }

    return @"";
}

然后根据要求使用 textWillChange/textDidChange 调用它。

- (void)textWillChange:(id<UITextInput>)textInput {
    // The app is about to change the document's contents. Perform any preparation here.
    NSLog(@"%@",[self lastWordBeforeInput]);
}

希望这会帮助你。

于 2014-09-27T12:51:08.043 回答