必须将自定义字体文件添加到 Xcode 中的 info.plist 吗?

Must one add custom font file to info.plist in Xcode?

只是一个关于在 Xcode 中添加自定义字体的问题。在我将它作为 ttf 文件添加到我的项目资源后,我可以在故事板的标签内使用它,例如。但是我是否也需要将它添加到 info.plist 文件中?

是的,您必须将自定义字体添加到 Info.plist。您可以使用 UIAppFont Info.plist 键(在 plist 编辑器中显示为 Fonts provided by application)。

这里是 relevant documentation.

还有一个例子:

<key>UIAppFonts</key>
<array>
    <string>SomeFont.otf</string>
    <string>SomeOtherFont.otf</string>
</array>