Reputation: 51941
FontAwesome is installed in Font Book:
However, it's not shown on Interface Builder's font list:
How can I select FontAwesome as the font for a UIButton
?
Upvotes: 2
Views: 1467
Reputation: 801
try this method
1. Add your font to project resources
2. In plist file
3. myButton.titleLabel.font = [UIFont fontWithName:@"yourFontName" size:yourFontSize];
Upvotes: 1