I want to keep custom fonts in iOS app. Currently, I\'m using iOS default fonts. Is there any possible way for the same?
How do I include the custom font so that I c
Add your custom font into your project , i.e. Dragged the font file(CALIBRIZ_0.TTF) into XCode project.
Edit Info.plist: Add a new entry with the key "Fonts provided by application".
For each of your files, add the file name to this array
Now set font to your label
yourLabel.font = [UIFont fontWithName:@"Calibri" size:15];