Core Text - 在 iPhone 中选择文本?
我需要在我的视图中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 CoreText 中实现了文本选择。这确实是一项艰苦的工作……但这是可行的。
基本上,您必须使用
CTFrameGetLineOrigins
(1)、CTLineGetTypgraphicBounds
(2 保存所有CTLine
矩形和原点)、CTLineGetStringRange
(3) 和CTLineGetOffsetForStringIndex
(4)。可以使用 origin(1)、ascent(2)、descent(2) 和 offset(3 )(4)如下图。
完成此操作后,您可以测试哪条线有触摸点循环线(始终记住 CoreText 使用逆 Y 坐标)。
知道了触摸点所在的线,您就可以使用
CTLineGetStringIndexForPosition
知道位于该点的字母(或最近的字母)。这是一张屏幕截图。
对于那个放大镜,我使用了代码 在此帖子中显示。
编辑:
要绘制蓝色背景选区,您必须使用 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 usingCTFrameGetLineOrigins
(1),CTLineGetTypographicBounds
(2),CTLineGetStringRange
(3) andCTLineGetOffsetForStringIndex
(4).The line rect can be calculated using the origin(1), ascent(2), descent(2) and offset(3)(4) as shown bellow.
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.
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 inNSAttributedString
.