I want to use a custom font for a UILabel. The custom font is loaded by from a file:
UILabel
NSString *fontPath = ... ; // a TTF file in iPhone Document
Updated for Swift 4 to get PostScript name (where font is the CGFont):
font
let fontName = font?.postScriptName as String? textLabel.font = UIFont(name: fontName!, size: 17)