0

我使用 Mac OS Font Book 从中导出字体。我有 2 个字体文件:Font Suitcase 和 PostScriptType。

然后我想在我的 iOS 应用程序中使用这些字体,但为此我需要将它们转换为例如 ttf。但是怎么做?

可能有人面临这个问题?

重要提示: 我不需要建议如何使用自定义字体(例如 ttf),我需要建议如何使用 Font Suitcase 和 PostScriptType 字体(可能是如何将其转换为 ttf)

4

2 回答 2

1

此解决方案不需要 Fondu 或 Rosetta,但它确实需要在 macOS 的终端应用程序中进行一些剪切和粘贴。

很简单,而且免费。它适用于 macOS Mojave。

https://sittingduck.co.nz/2013/11/unpacking-the-suitcase/

于 2019-02-19T17:19:30.253 回答
-1

尝试使用这些步骤。

1)    Add your custom font files into your project using Xcode as a resource
2)    Add a key to your Info.plist file called "Fonts provided by application".
3)    Make this key an array
4)    For each font you have, enter the full name of your font file (including the extension) as items to the UIAppFonts array
5)    Save Info.plist
6)    Now in your application you can simply call [UIFont fontWithName:@"CustomFontName" size:12] to get the custom font to use with your UILabels etc…

另外:确保字体在您的 Copy Bundle Resources 中。

于 2013-05-23T10:02:04.830 回答