iphone – 如何使用fontWithName:size:创建字体并指定字体系列名称和字体的特定样式信息?

iphone – 如何使用fontWithName:size:创建字体并指定字体系列名称和字体的特定样式信息?,第1张

概述文档说: + (UIFont *)fontWithName:(NSString *)fontName size:(CGFloat)fontSize The fully specified name of the font. This name incorporates both the font family name and the specific style information for 文档说:

@H_502_11@+ (UIFont *)FontWithname:(Nsstring *)Fontname size:(CGfloat)FontSize

The fully specifIEd name of the Font. This name incorporates both the
Font family name and the specific style information for the Font.

我找到的示例仅指定字体名称.但是我想指定其他属性,例如中等字体重量等.这是如何编码到名称中的?

解决方法 有关命名方案,请参阅 this answer.完整的字体列表(有自己的名字)可以找到 here.

例:

@H_502_11@[UIFont FontWithname:@"HelveticaNeue-Bold" size:15.0];

更新

iOS 8.2添加了this method以获取不同权重的系统字体.

例:

@H_502_11@[UIFont systemFontOfSize:15.0 weight:UIFontWeightBold]; 总结

以上是内存溢出为你收集整理的iphone – 如何使用fontWithName:size:创建字体并指定字体系列名称和字体的特定样式信息?全部内容,希望文章能够帮你解决iphone – 如何使用fontWithName:size:创建字体并指定字体系列名称和字体的特定样式信息?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1084076.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存