我正在从 中检索一个值NSFontPanel
,该值会更改字体系列和文本样式。但我只想要我从中选择的字体样式和颜色NSFontPanel
。
我不知道如何得到它。
NSFont *font =[fontmanager selectedFont];
string =[font fontName];
st = [font pointSize];
color =[TextEntered textColor];
在字符串变量中,我得到字体系列(例如 Arial)和字体样式(例如粗体)。但我想要这些值分开。
在颜色变量中,我只得到黑色。
我无法理解我在获取颜色方面错在哪里,以及我用于获取字体样式的功能..