如何在项目期间使用 xcode 导入新字体

发布于 2024-11-07 05:10:43 字数 420 浏览 0 评论 0原文

可能的重复:
我可以在 iPhone 应用程序中嵌入自定义字体吗?< /a>

嗨!大家好,我有一个问题,我需要在 xcode 中插入名为 Apple LiGothic Medium 的新字体,以便我可以在我的应用程序中使用它。

请有人帮助我

Possible Duplicate:
Can I embed a custom font in an iPhone application?

hi! everyone, i have a problem I need to insert new font named Apple LiGothic Medium in xcode so that I can use it in my apps.

pls someone help me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟火散人牵绊 2024-11-14 05:10:43

如果您有想要的并且可以合法使用的字体版本,您可以执行以下操作(自 iOS 版本 3.2 起):

将字体文件添加到 Xcode 中的项目中(例如在 Resources 中)。
将关键的 UIAppFonts 添加到 info.plist 文件中,并使其成为数组类型。
将字体文件名添加到数组中。
例如,通过执行 [UIFont fontWithName:@"fontnamr" size:20] 来使用它。

If you had a version of font that you wanted and legally could use, you can do (since iOS version 3.2):

Add the font file to the project in Xcode (in Resources for example).
Add the key UIAppFonts to the info.plist file and make it an array type.
Add the font file name to the array.
Use it by doing, for example, [UIFont fontWithName:@"fontnamr" size:20].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文