Hi there, I got the following code inside an NSTimer selector:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:2.0];
[infoLbl setAlpha:0];
[UIView commitAnimations];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:2.0];
[infoLbl setAlpha:1];
[UIView commitAnimations];
So I want to implement a simple fade-in/fade-out loop upon a UILabel (infoLbl).
Well, with this code I get only the fade-in step, since the UILabel suddenly disappear, then fades-in.
Some suggestion?
Thanks.