I included Marion.otf format in XCode.
Its copied and included to target also as showing in this image:
Rest other fonts otf format is properly visible & all fonts are included in Build Phases, info.plist too. I also tried to add ttf formats but those are too not visible.
Image Depicting Fonts are installed on machine :
Btw, While trying to print the font family in debugger, I am unable to saw these included fonts there. Used this code to print fonts:
for family: String in UIFont.familyNames
{
print("\(family)")
for names: String in UIFont.fontNames(forFamilyName: family)
{
print("== \(names)")
}
}
Also whenever i tried to open Size Inspector Marion Font is not displayed there. What could be the possible reasons?