IOS8以上或以下 presentViewController 背景不透明解决办法

来源:互联网 发布:云计算与大数据 编辑:程序博客网 时间:2024/05/29 00:32

IOS8及以上,设置
nextVC.modalPresentationStyle = UIModalPresentationOverCurrentContext;

IOS8以下,设置
self.modalPresentationStyle = UIModalPresentationCurrentContext;

其中 nextVC 是要显示的ViewController, self是当前ViewController。


全部代码如下:

nextVC.view.backgroundColor = [UIColor clearColor];if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) {    nextVC.modalPresentationStyle = UIModalPresentationOverCurrentContext;} else {    self.modalPresentationStyle = UIModalPresentationCurrentContext;}[self presentViewController:nextVC animated:YES completion:nil];
0 0
原创粉丝点击