当前位置:  开发笔记 > IOS > 正文

使用modalPresentationStyle显示视图

如何解决《使用modalPresentationStyle显示视图》经验,为你挑选了1个好方法。

我听说你可以使用modalPresentationStyle在iPad的Mail应用程序中创建一个视图弹出窗口.我很难搞清楚如何使用它.我在这里看了这篇文章,仍然无法弄清楚如何完成这项任务.如果有人能解释如何连接控制器以使这个代码工作,这将是伟大的.

谢谢



1> wkw..:

我认为神奇的咒语如下:

myViewController = ..... create your new controller if needed ....
myViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
myViewController.modalPresentationStyle = UIModalPresentationFormSheet;
// "self" here is a ViewController instance
[self presentModalViewController:myViewController animated:YES]

我似乎记得,在肖像中,模态接管了屏幕; 在景观中,它将以视图为中心呈现.

推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有