Hi
I'm developing a simple game for iOS from 4.0 to 5.0.
When i started testing it on older devices i noticed some errors.
Everything works fine on iOS 5.0, but on 4.3.3 (3GS) this part of code:
Code:
[UIView animateWithDuration:0.7
delay:0
options:UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat
animations:^{[self.touchLbl setAlpha:0.3];}
completion:nil];
is the reason why my buttons are not responding.
This animation is setting UILabel alpha up/down in infinite loop.
Buttons are properly set using IBAction - it works on iOS 5.
Anyone know how to solve it?