Presenting UIViewController Modally with Transition Effects
These are a few ways of how to present UIViewController modally with transition effects. UIViewController *controller = [[[MyViewController alloc] init] autorelease]; UIViewAnimationTransition trans = UIViewAnimationTransitionCurlUp; [UIView beginAnimations: nil context: nil]; [UIView setAnimationTransition:
Read More...