美文网首页
关于ios 13 使用 presentViewControlle

关于ios 13 使用 presentViewControlle

作者: Bruin_熊先森 | 来源:发表于2019-10-17 09:51 被阅读0次

如果是13以下的系统这样使用时没问题的。因为官方默认为全屏。

 OptFunPage_TBC_VC *OptFunPage_VC=[[OptFunPage_TBC_VC alloc]init];

  [self presentViewController:OptFunPage_VC animated:YES completion:nil];

IOS13之后需要设置模式:modalPresentationStyle

 OptFunPage_TBC_VC *OptFunPage_VC=[[OptFunPage_TBC_VC alloc]init];  

OptFunPage_VC.modalPresentationStyle = 0;

  [self presentViewController:OptFunPage_VC animated:YES completion:nil];

相关文章

网友评论

      本文标题:关于ios 13 使用 presentViewControlle

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