iOS13, 一句话适配 presentViewController

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

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

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

//Objective-C, 直接写在 .m 中

@implementation UIViewController (iOS13)

- (UIModalPresentationStyle)modalPresentationStyle{
    return UIModalPresentationFullScreen;
}
@end

OK ,运行起来 和之前一样

你可能感兴趣的:(iOS13, 一句话适配 presentViewController)