在 NSTextView 中设置行高/行距

发布于 2024-08-15 17:36:46 字数 51 浏览 5 评论 0原文

如何在 NSTextView 中设置行高或行距(即每行有多高,或者每行之间有多少空间)?

How would I set the Line Height or Line Spacing in an NSTextView (i.e. how tall each line is, or how much space is between each line)?

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

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

发布评论

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

评论(2

伴我心暖 2024-08-22 17:36:46

留下答案,以防有人需要:

NSMutableParagraphStyle * myStyle = [[NSMutableParagraphStyle alloc] init];
[myStyle setLineSpacing:10.0];
[myTextView setDefaultParagraphStyle:myStyle];

leave the answer in case someone need:

NSMutableParagraphStyle * myStyle = [[NSMutableParagraphStyle alloc] init];
[myStyle setLineSpacing:10.0];
[myTextView setDefaultParagraphStyle:myStyle];
骑趴 2024-08-22 17:36:46

在 NSTextView 中使用 - (void)setDefaultParagraphStyle:(NSParagraphStyle *)paragraphStyle 方法。

关于 NSParagraphStyle

文档 NSMutableParagraphStyle

NSMutableParagraphStyle 中有一个 setLineSpacing: 方法。还有与行高相关的方法,NSMutableParagraphStyle 文档中“设置其他样式信息”下的方法应该很有用。

我想这就是你要找的。

Use the - (void)setDefaultParagraphStyle:(NSParagraphStyle *)paragraphStyle method in your NSTextView.

Documentation on NSParagraphStyle

Documentation on NSMutableParagraphStyle

There is a setLineSpacing: method in NSMutableParagraphStyle. There are also methods relating to line height, the methods under "Setting Other Style Information" in the NSMutableParagraphStyle documentation should prove useful.

I think that's what you're looking for.

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