Tuesday, September 21, 2010

Collateral Damage: iPhone Tutorial ~ UIButtons and Animation

Collateral Damage: iPhone Tutorial ~ UIButtons and Animation: "[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5]; //Sets the Animation time to .5 Seconds

/*The Below Sets the transition to flip the button from the right. */
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:btnMyButton cache:YES];

[UIView commitAnimations];//Starts the Animation"