I have used a custom font in my previous app.
The file name was \"ProximaNova-Regular.otf\" and to load the font I just used...
[UIFont fontWithName:
Log familyNames of font file and then access the fonts:
// You can log all font family names suing **fontNamesForFamilyName** NSLog(@" font name %@", [UIFont fontNamesForFamilyName:@"the file name"]);
Hope it helps you.