I want to show a new window transition from bottom and transition to bottom when close,like the email App, when you write a new mai开发者_如何学Cl a new window transition from bottom, close this window the window transition to bottom
Use the presentModalViewController:animated:
method of UIViewController
See here
Alex Deem is right. The UIModalTransitionStyle value is UIModalTransitionStyleCoverVertical. It is the default value and that is how a modal view will be presented using presentModalViewController:animated: method.
精彩评论