iOS 中的 CTLineGetTypgraphicBounds —— 上升和下降总是返回为零

发布于 2024-12-21 10:55:06 字数 429 浏览 1 评论 0原文

在 NSAttributedString 的 iOS 类别中,我有以下内容:

CTLineRef line = CTLineCreateWithAttributedString((CFAttributedStringRef)self);
CGFloat ascent;
CGFloat descent;
double length = CTLineGetTypographicBounds(line, &ascent, &descent, NULL);
    // at this point, ascent and descent always come back as zero.

根据文档,这些应该是线的上升和下降。但他们不是。

宽度不返回零。

也就是说,如果我接着画线,它就画得很好。

我错过了什么吗?

In an iOS category on NSAttributedString, I have the following:

CTLineRef line = CTLineCreateWithAttributedString((CFAttributedStringRef)self);
CGFloat ascent;
CGFloat descent;
double length = CTLineGetTypographicBounds(line, &ascent, &descent, NULL);
    // at this point, ascent and descent always come back as zero.

According to the docs, it appears that these should be the ascent and descent of the line. But they aren't.

The width is not returning zero.

That said, if I then draw the line, it draws just fine.

Am I missing something?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文