iosswiftxcodexcode11macos-catalina

Custom Fonts not showing on Xcode 11 (macOS Catalina)


I have a problem loading custom fonts in the drop down menu to select fonts in storyboard, I have poppins font and MarvinVisionsBig. I have already added them as target membership, bundle resources and added them to the plist and they are already installed in the system. I tried everything but nothing seems to be working.

The fonts are printed when using this to show them :

for family: String in UIFont.familyNames {
    print(family)
    for names: String in UIFont.fontNames(forFamilyName: family) {
        print("== \(names)")
    }
}

Console:

enter image description here

DropDown:

enter image description here

Fonts:

enter image description here

Bundle resources:

enter image description here

Plist:

enter image description here


Solution

  • Unfortunately, the only solution for me was a fresh install of mac os catalina. Now everything works correctly in xCode interface builder.