使用UIFont在Xcode中使用自定义粗体字体

时间:2018-09-26 10:29:40

标签: ios swift xcode

我已将所有类型的自定义字体导入Xcode 但是当我想在UIFont中使用它时出现错误

我的用法如下:

let appearance = UITabBarItem.appearance()
    let attributes = [NSAttributedString.Key.font: UIFont(name: "IRANSansMobile(FaNum)_Bold", size: 10),
                      NSAttributedString.Key.foregroundColor: UIColor.black]
    appearance.setTitleTextAttributes(attributes as [NSAttributedString.Key : Any], for: .normal)

当我从字体名称的末尾删除_Bold时,它可以正常工作,但不能以粗体显示。 请帮我解决

1 个答案:

答案 0 :(得分:0)

代码以打印出所有可用的UIFonts。检查字体系列的名称和字体名称。使用此名称作为字体名称。

Derived