他來(lái)了,他來(lái)了,他帶著不同的··style·· 過(guò)來(lái)了
廢話不多說(shuō),由于項(xiàng)目中,很多地方用了 presentViewController, 如果按照網(wǎng)上的方法,那特么要去修改好多地方,于是,我們不如簡(jiǎn)單點(diǎn)
采用分類的形式,給 UIViewController 增加一個(gè)分類,寫入方法
//Objective-C, 直接寫在 .m 中
@implementation UIViewController (iOS13)
- (UIModalPresentationStyle)modalPresentationStyle{
return UIModalPresentationFullScreen;
}
@end