美文网首页
2018-09-06

2018-09-06

作者: 愤怒小鸟飞呀飞 | 来源:发表于2018-09-06 11:40 被阅读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 ,
    
        };
    

    相关文章

      网友评论

          本文标题:2018-09-06

          本文链接:https://www.haomeiwen.com/subject/lfatgftx.html