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
Try This:
[UIView animateWithDuration:0.5 animations:^{ label.alpha=0.3; }completion:^(BOOL finished) { label.backgroundcolor=[uicolor purplecolor]; [UIView animateWithDuration:0.5 animations:^{ label.alpha=1.0; }completion:^(BOOL finished) { }]; }];