我已将所有类型的自定义字体导入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时,它可以正常工作,但不能以粗体显示。 请帮我解决
答案 0 :(得分:0)
代码以打印出所有可用的UIFonts。检查字体系列的名称和字体名称。使用此名称作为字体名称。
Derived