如何在不改变当前内容的情况下改变 NSTextView 的字体?

发布于 2024-10-21 18:03:35 字数 240 浏览 1 评论 0原文

每次我在 NSTextView 上使用 -setFont: 或 -setFont:Range: 时,它都会更改字体,但不应该。我只想更改用户输入的字体。

例如,如果用户键入“hi”,它将使用默认的 Helvetica 字体。当我将字体更改为 Times New Roman 时,它会将“hi”更改为 Times New Roman。我不想要这样。我只是希望,从现在开始,当用户输入时,使用 Times New Roman 而不是 Helvetica。

Everytime I use -setFont: or -setFont:Range: on my NSTextView, it does change the font, but it shouldn't. I just want to change the font the user is typing with.

For example, if the user types 'hi' it uses the default Helvetica font. When I change the font to Times New Roman it changes that 'hi' into Times New Roman. I don't want that. I just want that, from now on, when the user types, Times New Roman is used instead of Helvetica.

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

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

发布评论

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

评论(1

烟花肆意 2024-10-28 18:03:35

我想你可能想使用 -[NSTextView setTypingAttributes:] 代替。您还应该确保您的文本视图设置为富文本。

I think you might want to use -[NSTextView setTypingAttributes:] instead. You should also make sure your text view is set as rich text.

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