如何自动更改 NSTextView 的字体大小以使最长的段落始终不被破坏?

发布于 2024-10-11 16:13:07 字数 235 浏览 1 评论 0原文

如何自动更改 NSTextView 的字体大小,以便最长的段落始终不被破坏? NSTextView 是可调整大小的,因此字体大小应始终更改为文本不被破坏的最大可能大小。

例如:

alt 文本

“替代文本”

How can I change the font size of an NSTextView automatically so that the longest paragraph is always not broken? The NSTextView is resizable, so the size of the font should always change to the maximal possible size in which the text is not broken.

For example:

alt text

alt text

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

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

发布评论

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

评论(1

沙与沫 2024-10-18 16:13:07

如果您确实想更改字体大小,我不知道有什么比调用 -[NSAttributedString size] 并设置各种字体大小更好的方法。

如果您实际上并不关心 NSTextStorage 中的字体大小,而只是关心它在屏幕上的显示方式,那么您可以将文本视图设置为不换行,然后更改其边界superview 有效地“缩放”文本视图,使其完整宽度始终显示在屏幕上。

If you actually want to change the font size, I don't know of a better way than to call -[NSAttributedString size] with various font sizes set on it.

If you don't actually care about the font size in the NSTextStorage, but just about how it appears on screen, you might be able to set the text view to not wrap and then change the bounds of its superview to effectively "zoom" the text view so its full width is always on screen.

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