创建 CTFont 时收到以下警告。
CoreText 性能说明:客户端请求使用 PostScript 名称的字体,而不是"ArialRoundedMTBold"
使用名称"Arial Rounded MT Bold"
。
// Creating Font
CTFontRef fontWithoutTrait = CTFontCreateWithName((__bridge CFStringRef)(name), size, NULL);
// Font names I use to create a font
[UIFont familyNames];
是否可以安全地假设,如果我删除从 [UIFont familyNames] 获取的任何字体名称中的所有空格,它将是核心文本的预期字体名称?