Hello, is there a way to change the font size gradually in a UILabel? I tried it with:
[UIView beginAnimations:@"foo" context:nil];
[UIView setAnimationDuration:0.8];
uiLabel.font = [UIFont boldSystemFontOfSize:144];
[UIView commitAnimations];
The problem is that the change of the font size happens instantly.