Hallo Leute,
folgendes, ich würde gerne eine Animation als Block-Based-Animation erstellen, jedoch weiß ich nicht wie ich das coden muss.
Wie würde folgender Objective-C-Code als Block-Based-Animation aussehen? :
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[btn1 setAlpha:0.0];
[btn2 setAlpha:1.0];
[UIView commitAnimations];
Danke!
Lars
|