在旧金山使用 fontWithSize API
Using the fontWithSize API with San Francisco
iOS9 中的新 San Francisco 字体通过调整跟踪并在 SF 显示和 SF 文本之间动态切换,针对将要使用的大小进行了优化。在 WWDC session #804 中指出,开发人员不应通过尝试使用 fontWithName
初始化 UIFont
来使用 San Francisco,例如:
UIFont *originalFont = [UIFont systemFontOfSize:11];
UIFont *newFont = [UIFont fontWithName:originalFont.fontName size:44];
这是因为在使用 fontWithName
API.
时,系统无法针对新大小优化字体。
相反,建议从原始字体中获取 UIFontDescriptor
并使用新字体创建新字体,如下所示:
UIFont *originalFont = [UIFont systemFontOfSize:11];
UIFont *newFont = [UIFont fontWithDescriptor:originalFont.fontDescriptor size:44];
但是,他们没有提到以下是否允许优化:
UIFont *originalFont = [UIFont systemFontOfSize:11];
UIFont *newFont = [originalFont fontWithSize:44];
我的问题是,fontWithSize
API 的行为是否像 fontWithName
API 或 fontWithDescriptor
API - 它的结果是是否使用针对新尺寸的优化字体?
我可以确认 fontWithSize
确实创建了新尺寸的优化字体。
Printing description of originalFont:
<UICTFont: 0x7f8d9ba85340> font-family: ".SFUIText-Regular"; font-weight: normal; font-style: normal; font-size: 11.00pt
Printing description of newFont:
<UICTFont: 0x7f8d9ba7fe70> font-family: ".SFUIDisplay-Regular"; font-weight: normal; font-style: normal; font-size: 44.00pt
iOS9 中的新 San Francisco 字体通过调整跟踪并在 SF 显示和 SF 文本之间动态切换,针对将要使用的大小进行了优化。在 WWDC session #804 中指出,开发人员不应通过尝试使用 fontWithName
初始化 UIFont
来使用 San Francisco,例如:
UIFont *originalFont = [UIFont systemFontOfSize:11];
UIFont *newFont = [UIFont fontWithName:originalFont.fontName size:44];
这是因为在使用 fontWithName
API.
相反,建议从原始字体中获取 UIFontDescriptor
并使用新字体创建新字体,如下所示:
UIFont *originalFont = [UIFont systemFontOfSize:11];
UIFont *newFont = [UIFont fontWithDescriptor:originalFont.fontDescriptor size:44];
但是,他们没有提到以下是否允许优化:
UIFont *originalFont = [UIFont systemFontOfSize:11];
UIFont *newFont = [originalFont fontWithSize:44];
我的问题是,fontWithSize
API 的行为是否像 fontWithName
API 或 fontWithDescriptor
API - 它的结果是是否使用针对新尺寸的优化字体?
我可以确认 fontWithSize
确实创建了新尺寸的优化字体。
Printing description of originalFont:
<UICTFont: 0x7f8d9ba85340> font-family: ".SFUIText-Regular"; font-weight: normal; font-style: normal; font-size: 11.00pt
Printing description of newFont:
<UICTFont: 0x7f8d9ba7fe70> font-family: ".SFUIDisplay-Regular"; font-weight: normal; font-style: normal; font-size: 44.00pt