I'm developing an iOS 4 application, using the latest stable SDK (XCode 4.2).
I have a Xib with two custom buttons. These two buttons have the same size and position (one is over the other one). The only different is they have different images.
One user touches the first button, it disappears and then the second button appears. I use this method to do that:
- (IBAction)backCardCliked:(id)sender
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.5f];
backCardImage.alpha = 0.0f;
[UIView commitAnimations];
}
Both, have hidden = NO.
I don't know why it works on simulator (iOS 5), but not in iPhone device (running iOS 4.3.5).
Any clue?
NSLog("%@",button)and see if the output is NULL. And btw, is this code a modification? If not, I wouldn't do that like this. – Fabio Poloni Dec 25 '11 at 21:08