美文网首页
如何禁止iOS13新特性:模态弹出下滑返回

如何禁止iOS13新特性:模态弹出下滑返回

作者: 左方 | 来源:发表于2019-11-19 13:57 被阅读0次
    // modalInPresentation is set on the view controller when you wish to force the presentation hosting the view controller into modal behavior. When this is active, the presentation will prevent interactive dismiss and ignore events outside of the presented view controller's bounds until this is set to NO.
    
    if (@available(iOS 13.0, *)) {
            UIViewController.modalInPresentation = YES;
    }
    

    相关文章

      网友评论

          本文标题:如何禁止iOS13新特性:模态弹出下滑返回

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