iOS 上核心文本段落空间太大

发布于 2024-12-01 09:01:11 字数 460 浏览 2 评论 0原文

我使用 CoreText 渲染文本,如下所示:

另一个非常常见的排版操作是绘制一行文本以用作用户界面元素的标签。
在 Core Text 中,这只需要两行代码,一行用于创建带有属性字符串的线条对象,另一行将线条绘制到图形上下文中。
但它展示了如何创建属性字典并使用它来创建。

显然有3段。我使用默认的 CTParagraphStyleSetting ,以便将 ParagraphSpacingParagraphSpacingBefore 默认设置为 0。

但渲染结果显示空间太大
rendered text with 3 paragraphs

有减少段落空间的想法吗?

I used CoreText to render text as below:

Another very common typesetting operation is drawing a single line of text to use as a label for a user-interface element.
In Core Text this requires only two lines of code, one to create the line object with an attributed string and another to draw the line into a graphic context.
but it shows how to create an attributes dictionary and use it to create.

obvious there're 3 paragraphs. and I use default CTParagraphStyleSetting so that the ParagraphSpacing and ParagraphSpacingBefore is set to 0 by default.

But the rendered result shows the space is too HUGE
rendered text with 3 paragraphs

Any idea to reduce the paragraph space?

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

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

发布评论

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

评论(2

折戟 2024-12-08 09:01:11

你可以尝试

kCTParagraphStyleSpecifierMinimumLineHeight
kCTParagraphStyleSpecifierMaximumLineHeight
kCTParagraphStyleSpecifierLineSpacing

u can try

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