ViewController 背景能透明

ios8多了一个样式UIModalPresentationOverCurrentContext,跟原来的很相近哦。而且定义的对象也变成了弹出的视图。

所以用的话做版本判断:

if ([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0) {
  nextVC.modalPresentationStyle=UIModalPresentationOverCurrentContext;
}else{
  self.modalPresentationStyle=UIModalPresentationCurrentContext;
}

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

猜你喜欢

转载自iaiai.iteye.com/blog/2218615
今日推荐