美文网首页cocoa
iOS13, 一句话适配 presentViewControll

iOS13, 一句话适配 presentViewControll

作者: 猫爪 | 来源:发表于2019-10-30 15:08 被阅读0次

    他来了,他来了,他带着不同的··style·· 过来了

    废话不多说,由于项目中,很多地方用了 presentViewController, 如果按照网上的方法,那特么要去修改好多地方,于是,我们不如简单点

    采用分类的形式,给 UIViewController 增加一个分类,写入方法

    //Objective-C, 直接写在 .m 中
    
    @implementation UIViewController (iOS13)
    
    - (UIModalPresentationStyle)modalPresentationStyle{
        return UIModalPresentationFullScreen;
    }
    @end
    
    

    OK ,运行起来 和之前一样

    相关文章

      网友评论

        本文标题:iOS13, 一句话适配 presentViewControll

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