本文介绍了来自 NSFont 的名称和大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图在互联网上找到一些东西,但现在我没有答案,所以如果你能帮助我就太好了!到目前为止,我有一个 NSFont 对象,但我想要字体的名称(如 NSString)和大小,所以我可以输出它!就像
i've tried to find something in the Internet, but right now I don't have an answer, so it would be great if you can help me!So far I have a NSFont object, but I would like the name (as NSString) and size of the font, so I can output that! It's like
[NSFont fontWithName:@"Menlo" size:11];
只是倒退,所以我得到了名字Menlo"和尺寸 11.
only backwards, so I get the name "Menlo" and as size 11.
感谢帮助!来自德国的Xcoder
Thanks for help!Xcoder from Germany
推荐答案
NSFont 的名称和大小是带有 setter 和 getter (@property
) 的变量,因此您可以轻松获取它们:
The name and size of NSFont are variables with setters and getters (@property
) so you can easily get them:
object.fontName;
object.systemSize;
这篇关于来自 NSFont 的名称和大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!