5

我遇到了一个问题,当键盘上按住删除键时,iOS 给我的 UITextViewDelegate 提供了不正确的信息。

当用户在 iPad 上按住UITextView上的删除键时,UITextView 将开始删除整个单词而不是单个字符,按住的时间越长(注意:这不会在模拟器中发生)。

发生这种情况时,UITextView 委托方法:

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text

使用包含正确光标位置但长度为 1 的范围调用。这是不正确的,因为 UITextView 现在正在删除整个单词,而不是单个字母。例如,下面的代码将只打印一个空格。

[textView substringWithRange:range]
string contains " "

尽管 UITextView 删除了整个单词。替换文本正确地作为空字符串给出。有没有人知道这个问题的解决方案或解决方法?

4

1 回答 1

5

雅各布提到我应该将此作为答案发布。所以就在这里。

我对此的解决方法是监视 shouldChangeTextInRange 中给出的文本长度和范围,然后将其与 textViewDidChange 中的文本长度进行比较。如果差异不同步,我会刷新我的支持文本缓冲区并从文本视图重建它。这不是最优的。这是我的临时解决方法:

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{
    //Push the proposed edit to the underlying buffer
    [self.editor.buffer changeTextInRange:range replacementText:text];

    //lastTextLength is an NSUInteger recording the length that
    //this proposed edit SHOULD make the text view have
    lastTextLength = [textView.text length] + ([text length] - range.length);

    return YES;
}

- (void)textViewDidChange:(UITextView *)textView
{
    //Check if the lastTextLength and actual text length went out of sync
    if( lastTextLength != [textView.text length] )
    {
        //Flush your internal buffer
        [self.editor.buffer loadText:textView.text];
    } 
}
于 2012-02-07T00:43:40.583 回答