Core Text - 在 iPhone 中选择文本?

发布于 2024-12-13 09:30:43 字数 89 浏览 2 评论 0原文

我需要在我的视图中使用 Core Text 渲染富文本(简单格式、一行文本中的多种字体等)。我想知道用户是否可以使用(标准复制/粘贴功能)选择以这种方式呈现的文本?

I need to render rich text using Core Text in my view (simple formatting, multiple fonts in one line of texts, etc.). I am wondering if text rendered this way can be selected by user using (standard copy / paste function)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽你眉间 2024-12-20 09:30:43

我在 CoreText 中实现了文本选择。这确实是一项艰苦的工作……但这是可行的。

基本上,您必须使用 CTFrameGetLineOrigins(1)CTLineGetTypgraphicBounds(2 保存所有 CTLine 矩形和原点)CTLineGetStringRange(3)CTLineGetOffsetForStringIndex(4)

可以使用 origin(1)、ascent(2)、descent(2) 和 offset(3 )(4)如下图。

lineRect = CGRectMake(origin.x + offset, 
                      origin.y - descent, 
                      offset, 
                      ascent + descent);

完成此操作后,您可以测试哪条线有触摸点循环线(始终记住 CoreText 使用逆 Y 坐标)。

知道了触摸点所在的线,您就可以使用 CTLineGetStringIndexForPosition 知道位于该点的字母(或最近的字母)。

这是一张屏幕截图。

选择用 CoreText 绘制的文本

对于那个放大镜,我使用了代码 在此帖子中显示

编辑:
要绘制蓝色背景选区,您必须使用 CGContextFillRect 绘制矩形。不幸的是,NSAttributedString 中没有背景颜色。

I implemented a text selection in CoreText. It is really a hard work... But it's doable.

Basically you have to save all CTLine rects and origins using CTFrameGetLineOrigins(1), CTLineGetTypographicBounds(2), CTLineGetStringRange(3) and CTLineGetOffsetForStringIndex(4).

The line rect can be calculated using the origin(1), ascent(2), descent(2) and offset(3)(4) as shown bellow.

lineRect = CGRectMake(origin.x + offset, 
                      origin.y - descent, 
                      offset, 
                      ascent + descent);

After doing that, you can test which line has the touched point looping the lines (always remember that CoreText uses inverse Y coordinates).

Knowing the line that has the touched point, you can know the letter that is located at that point (or the nearest letter) using CTLineGetStringIndexForPosition.

Here's one screenshot.

selecting text drawn with CoreText

For that loupe, I used the code shown in this post.

Edit:
To draw the blue background selection, you have to paint the rect using CGContextFillRect. Unfortunately, there's no background color in NSAttributedString.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文