码迷,mamicode.com
首页 > 其他好文 > 详细

modalPresentationStyle 使用present跳转界面时,实现特殊的弹出效果。

时间:2017-08-22 11:00:23      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:nbsp   设置   mod   ntc   oda   animate   填充   ima   touch   

1.代码如下

controller.modalPresentationStyle=UIModalPresentationFormSheet;
[self presentModalViewController:controller animated:YES]; 

2.

typedef enum {
    UIModalPresentationFullScreen = 0,
    UIModalPresentationPageSheet,
    UIModalPresentationFormSheet,
    UIModalPresentationCurrentContext,
} UIModalPresentationStyle;

 UIModalPresentationFullScreen代表弹出VC时,presented VC充满全屏,如果弹出VC的wantsFullScreenLayout设置为YES的,则会填充到状态栏下边,否则不会填充到状态栏之下。

  UIModalPresentationPageSheet代表弹出是弹出VC时,presented VC的高度和当前屏幕高度相同,宽度和竖屏模式下屏幕宽度相同,剩余未覆盖区域将会变暗并阻止用户点击,这种弹出模式下,竖屏时跟UIModalPresentationFullScreen的效果一样,横屏时候两边则会留下变暗的区域。

  UIModalPresentationFormSheet这种模式下,presented VC的高度和宽度均会小于屏幕尺寸,presented VC居中显示,四周留下变暗区域。

  UIModalPresentationCurrentContext这种模式下,presented VC的弹出方式和presenting VC的父VC的方式相同。

  这四种方式在iPad上面统统有效,但在iPhone和iPod touch上面系统始终已UIModalPresentationFullScreen模式显示presented VC。

modalPresentationStyle 使用present跳转界面时,实现特殊的弹出效果。

标签:nbsp   设置   mod   ntc   oda   animate   填充   ima   touch   

原文地址:http://www.cnblogs.com/liujxbky/p/7409945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!