Adding a Custom Font to Your App
Last updated
Was this helpful?
Last updated
Was this helpful?
plist設定:Fonts provided by application
查看FontName最快的方式
for family in UIFont.familyNames.sorted() {
let names = UIFont.fontNames(forFamilyName: family)
print("Family: \(family) Font names: \(names)")
}