插入符号在 UITextView 和 Text Kit 中的长按空白处消失

Posted

技术标签:

【中文标题】插入符号在 UITextView 和 Text Kit 中的长按空白处消失【英文标题】:Caret disappears on long pressing blank space in UITextView and Text Kit 【发布时间】:2013-10-19 08:06:21 【问题描述】:

我正在使用 Text Kit 在文本视图上呈现一些富文本。

我的问题是 ios 7 中似乎存在插入符号放置的错误。每当您长按文本视图中的空白区域时,插入符号似乎会消失,并且不会出现带有(剪切、复制、选择等)的弹出菜单。

您可以通过观看这个短片更好地理解这个问题:http://cl.ly/1E0s2A2S0t2t

您可以通过从 Apple 下载 IntroToTextKit 示例代码自行尝试。这是该项目的链接:http://cl.ly/0h0T0V1Z0D3H

对此的任何解决方法将不胜感激。

【问题讨论】:

【参考方案1】:

找到了解决办法。

继承 UITextView 并添加以下内容:

    - (UITextPosition *)closestPositionToPoint:(CGPoint)point

    point.y -= self.textContainerInset.top;
    point.x -= self.textContainerInset.left;

    CGFloat fraction = 1;
    NSUInteger glyphIndex = [self.layoutManager glyphIndexForPoint:point inTextContainer:self.textContainer fractionOfDistanceThroughGlyph:&fraction];    

    NSInteger index = glyphIndex;
    if (![[self.text substringFromIndex:self.text.length - 1] isEqualToString:@"\n"]) 
        if (index == [self.text length] - 1 && roundf(fraction) > 0) 
            index++;
        
    

    NSUInteger characterIndex = [self.layoutManager characterIndexForGlyphAtIndex:index];
    UITextPosition *pos = [self positionFromPosition:self.beginningOfDocument offset:characterIndex];
    return pos;

【讨论】:

以上是关于插入符号在 UITextView 和 Text Kit 中的长按空白处消失的主要内容,如果未能解决你的问题,请参考以下文章

在 UITextView 上隐藏“选择预览”插入符号

在 iOS 7 上成为第一响应者后,UITextView 不会滚动到插入符号

以编程方式将文本插入 UITextView 而不移动插入符号位置。

当用户输入 29 个字符时,将 UITextView 插入符号移动到新行?

React Native Text Input Android 光标/插入符号和文本光标颜色

带有插入符号问题的 Text2Vec 分类