Is it possible to apply custom (added to the app) font to UILabel text via UIBuilder or it can be done only programmatically ?
I have already added
Fonts provided by application
key in application plist
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It can only be done programmaticaly, but it is simple: crate a subclass of UILabel and then overwrite the awakeFromNib method:
(with this method you keep the font size you set in IB.)
In the Identity Inspector in IB you have to set the label to the class you created, in “Custom Class” (where it says “UILabel” now).