Loading

Wednesday, August 25, 2010

Fade Effect For View

YourView.Alpha=0.0
[UIView beginAnimations:nil context:NULL];
// [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:YourView cache:YES];
[UIView setAnimationDuration:1.5];
[YourView setAlpha:1.0];
[UIView commitAnimations];

No comments:

Post a Comment