ViewController 背景会透明
ViewController 背景能透明
ios8多了一个样式UIModalPresentationOverCurrentContext,跟原来的很相近哦。而且定义的对象也变成了弹出的视图。
所以用的话做版本判断:
ios8多了一个样式UIModalPresentationOverCurrentContext,跟原来的很相近哦。而且定义的对象也变成了弹出的视图。
所以用的话做版本判断:
if ([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0) { nextVC.modalPresentationStyle=UIModalPresentationOverCurrentContext; }else{ self.modalPresentationStyle=UIModalPresentationCurrentContext; } [self presentViewController: nextVC animated:YES completion:nil];