To run the example project, clone the repo, and run pod install
from the Example directory first.
Add your custom font to your project : https://developer.apple.com/documentation/uikit/text_display_and_fonts/adding_a_custom_font_to_your_app
//add it in AppDelegate initialize
+ (void)initialize {
if (self == AppDelegate.self) {
// Print all font names
[UIFont printFonts];
// set fonts by font name
[UIFont setRegularFontName:@"JFFlat-Regular"];
[UIFont setBoldFontName:@"JFFlat-Medium"];
[UIFont setItalicFontName:@"JFFlat-Regular"];
}
}
//add it in AppDelegate initialize
override init() {
// Print all font names
UIFont.printFonts()
// set fonts by font name
UIFont.setBoldFontName("OpenSans-Bold")
UIFont.setRegularFontName("OpenSans")
UIFont.setItalicFontName("OpenSans-Italic")
return true
}
FAFont is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "FAFont"
fadizant, [email protected]
FAFont is available under the MIT license. See the LICENSE file for more info.