如何使用Core Text给文本加下划线?

发布于 2024-12-12 09:45:51 字数 259 浏览 0 评论 0原文

我在任何地方都找不到简单的例子。这是我的代码当前所在的位置...

(注意:名称是 UILabel,fontWithCTFont 来自 UIFont 的类别)

CTFontRef helveticaBold = CTFontCreateWithName(CFSTR("Helvetica-Bold"), 24.0, NULL);
[name setFont:[UIFont fontWithCTFont:helveticaBold]];

I can't find a simple example anywhere. Here's where my code is at currently...

(Note: name is a UILabel, fontWithCTFont comes from a category of UIFont)

CTFontRef helveticaBold = CTFontCreateWithName(CFSTR("Helvetica-Bold"), 24.0, NULL);
[name setFont:[UIFont fontWithCTFont:helveticaBold]];

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

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

发布评论

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

评论(1

青柠芒果 2024-12-19 09:45:52

[attrStr addAttribute:(NSString*)kCTUnderlineStyleAttributeName value:[NSNumber numberWithInt:style] range:range]; 其中 style 是 CTUnderlineStyle的按位掩码组合CTUnderlineStyleModifiers 值。

请参阅 github 上的 OHAttributedLabel 类,尤其是我的 NSAttributedString+Attributes 类别

[attrStr addAttribute:(NSString*)kCTUnderlineStyleAttributeName value:[NSNumber numberWithInt:style] range:range]; where style is a bitwise-mask combination of CTUnderlineStyle and CTUnderlineStyleModifiers values.

See my OHAttributedLabel class on github, and especially my NSAttributedString+Attributes category

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