2018-09-06

2018-09-06  本文已影响0人  愤怒小鸟飞呀飞

VC.modalPresentationStyle : UIModalPresentationStyle

typedefNS_ENUM(NSInteger, UIModalPresentationStyle) {

        UIModalPresentationFullScreen =0,//由下到上,全屏覆盖

        UIModalPresentationPageSheet,//在portrait时是FullScreen,在landscape时和FormSheet模式一样。

        UIModalPresentationFormSheet,// 会将窗口缩小,使之居于屏幕中间。在landscape下如果软键盘出现,窗口位置会调整。

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

        UIModalPresentationCustom,//自定义视图展示风格,由一个自定义演示控制器和一个或多个自定义动画对象组成。符合UIViewControllerTransitioningDelegate协议。使用视图控制器的transitioningDelegate设定您的自定义转换。

        UIModalPresentationOverFullScreen,//如果视图没有被填满,底层视图可以透过

        UIModalPresentationOverCurrentContext,//视图全部被透过

        UIModalPresentationPopover,

        UIModalPresentationNone ,

    };
上一篇下一篇

猜你喜欢

热点阅读