The UIView font is not an animated property. You should use conversions instead.
[UIView beginAnimations:nil context:nil]; monthsOnBoard.transform = CGAffineTransformMakeScale(2.0, 2.0);
Similarly, you can play with values ββin CGAffineTransformMakeScale(x, y);
- x is a constant of horizontal scale, and y is a vertical one. Enjoy !!
source share