Issue #225

<key>UIAppFonts</key>
<array>
    <string>OpenSans-Bold.ttf</string>
    <string>OpenSans-BoldItalic.ttf</string>
    <string>OpenSans-ExtraBold.ttf</string>
    <string>OpenSans-ExtraBoldItalic.ttf</string>
    <string>OpenSans-Italic.ttf</string>
    <string>OpenSans-Light.ttf</string>
    <string>OpenSans-LightItalic.ttf</string>
    <string>OpenSans-Regular.ttf</string>
    <string>OpenSans-SemiBold.ttf</string>
    <string>OpenSans-SemiBoldItalic.ttf</string>
</array>

Read Adding a Custom Font to Your App

The name of the font isn’t always obvious, and rarely matches the font file name. A quick way to find the font name is to get the list of fonts available to your app, which you can do with the following code:

for family in UIFont.familyNames.sorted() {
    let names = UIFont.fontNames(forFamilyName: family)
    print("Family: \(family) Font names: \(names)")
}