使用核心文本将文本与框架底部对齐

发布于 2024-12-12 05:20:07 字数 193 浏览 2 评论 0原文

我有一个属性字符串,我想使用核心文本将其底部对齐绘制到矩形路径中。有没有办法让 CTFrameSetter / CTFrame 来执行此操作,或者我需要手动执行此操作?手动方式是:

  1. 使用 CTFramesetterSuggestFrameSizeWithConstraints 计算出框架的高度
  2. 调整路径的高度。

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:

  1. Figure out the height of the frame using CTFramesetterSuggestFrameSizeWithConstraints
  2. Adjust the height of the path.

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

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

发布评论

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

评论(1

土豪我们做朋友吧 2024-12-19 05:20:07

你必须手动完成。

CGRect boundingBox = CTFontGetBoundingBox(font);

//Get the position on the y axis
float midHeight = self.frame.size.height / 2;
midHeight -= boundingBox.size.height / 2;

CGPathAddRect(path, NULL, CGRectMake(0, midHeight, self.frame.size.width, boundingBox.size.height));

参考:与核心文本垂直对齐?

You'll have to do it manually.

CGRect boundingBox = CTFontGetBoundingBox(font);

//Get the position on the y axis
float midHeight = self.frame.size.height / 2;
midHeight -= boundingBox.size.height / 2;

CGPathAddRect(path, NULL, CGRectMake(0, midHeight, self.frame.size.width, boundingBox.size.height));

Reference: Vertical align with Core Text?

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