sma*_*nja 0 iphone objective-c ios4 ios
在撰写新消息时,iphone使用动画(新视图来自屏幕底部).我想将该动画添加到我的应用程序中.但我无法在预定义的过渡动画类型中找到它.我怎么能加呢?
请帮我.
您可以切换到其他UIViewControllers,如下所示:
[self presentModalViewController:yourUIViewController animated:YES];
Run Code Online (Sandbox Code Playgroud)
有很多类型的动画像......
yourUIViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:yourUIViewController animated:YES];
yourUIViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:yourUIViewController animated:YES];
yourUIViewController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:yourUIViewController animated:YES];
Run Code Online (Sandbox Code Playgroud)