如何在项目期间使用 xcode 导入新字体 [重复]
Posted
技术标签:
【中文标题】如何在项目期间使用 xcode 导入新字体 [重复]【英文标题】:how can I import new font in xcode using during project [duplicate] 【发布时间】:2011-08-24 21:55:30 【问题描述】:可能重复:Can I embed a custom font in an iPhone application?
嗨!大家,我有一个问题,我需要在 xcode 中插入名为 Apple LiGothic Medium 的新字体,以便我可以在我的应用程序中使用它。
请有人帮助我
【问题讨论】:
【参考方案1】:查看下面的 SO 帖子
Can I embed a custom font in an iPhone application?
博文:
Using custom fonts in iPhone applications
Load custom font in iPhone
【讨论】:
【参考方案2】:如果您有您想要并且可以合法使用的字体版本,您可以这样做(自 ios 版本 3.2 起):
将字体文件添加到 Xcode 中的项目中(例如在参考资料中)。 将键 UIAppFonts 添加到 info.plist 文件并使其成为数组类型。 将字体文件名添加到数组中。 使用它,例如 [UIFont fontWithName:@"fontnamr" size:20]。
【讨论】:
以上是关于如何在项目期间使用 xcode 导入新字体 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Xcode 中增加字体大小以实现 swift [重复]