Last Updated: February 25, 2016
·
1.034K
· modocache

Decimal fractions can be used for font sizes in UIKit

This may sound obvious, but I had never even considered it.

label.font = [UIFont systemFontOfSize:14.0f]; // Too small?
label.font = [UIFont systemFontOfSize:14.5f]; // Try this.