Reputation:
In UIFont, I couldn't find a color property. What's the trick to make a font appear green, for example?
Upvotes: 1
Views: 6819
Reputation: 19071
Instead of setting the color in a UIFont
, you set the UILabel
's textColor
property, which is a UIColor
.
Upvotes: 0