如何在ios上使用swift设置自定义字体

问题描述 投票:0回答:1

1.我将 ttf 文件复制到我的项目中,如下所示 enter image description here

2.添加到info.plist enter image description here

if let customFont = UIFont(name: "myFont", size: 54) {
        testLabel.font = customFont
    } else {
        print("Font loading failed!")
    }

打印字体加载失败! 为什么? enter image description here

然后我尝试打印所有字体,如下所示:

for fontFamily in UIFont.familyNames {
       print(UIFont.fontNames(forFamilyName: fontFamily))
    }

但是我找不到我的自定义字体 不知道为什么,非常感谢您的帮助

ios swift
1个回答
0
投票

这里你有来自Apple的教程。

我怀疑您可能没有将其添加到您正在构建的目标中,或者

.plist
文件中的字体名称可能不同。

© www.soinside.com 2019 - 2024. All rights reserved.