I have a label which pops up displaying points in my application. I am using the following code to make the label get larger in scale, then smaller. I would also like to ani
You can use iOS 4.0's view transition method to do this:
[UIView transitionWithView:statusLabel duration:0.25 options:UIViewAnimationOptionTransitionCrossDissolve animations:^{ [statusLabel setTextColor:[UIColor whiteColor]]; [statusLabel setShadowColor:[UIColor blackColor]]; } completion:nil];