我正在使用下面的代码绘制一些文字。如何设置此文本的大小?
NSDictionary *attrs =
@{ NSForegroundColorAttributeName : [UIColor grayColor],
};
NSString *currentRank = @"Sample text";
[currentRank drawAtPoint:CGPointMake(100, 100) withAttributes:attrs];
答案 0 :(得分:0)
查看文档似乎字体名称包含大小
<强> NSFontAttributeName 强>
NSFont
默认Helvetica 12点
适用于OS X v10.0及更高版本 在NSAttributedString.h中声明。