使用核心文本将文本与框架底部对齐
我有一个属性字符串,我想使用核心文本将其底部对齐绘制到矩形路径中。有没有办法让 CTFrameSetter / CTFrame 来执行此操作,或者我需要手动执行此操作?手动方式是:
- 使用 CTFramesetterSuggestFrameSizeWithConstraints 计算出框架的高度
- 调整路径的高度。
I have an attributed string that I want to draw bottom-aligned into a rectangular path, using Core Text. Is there a way to get CTFrameSetter / CTFrame to do this, or do I need to do it manually? The manual way being:
- Figure out the height of the frame using CTFramesetterSuggestFrameSizeWithConstraints
- Adjust the height of the path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须手动完成。
参考:与核心文本垂直对齐?
You'll have to do it manually.
Reference: Vertical align with Core Text?