标签:
UIViewController *controller = self.view.window.rootViewController;
controller.modalPresentationStyle = UIModalPresentationCurrentContext;
if (CURRENT_DEVICE >=8.0) {
lockScreenController.modalPresentationStyle = UIModalPresentationOverCurrentContext;
} else {
controller.modalPresentationStyle = UIModalPresentationCurrentContext;
}
[controller presentViewController:lockScreenController animated:YES completion:^{
// 背景色透明
lockScreenController.view.superview.backgroundColor = [UIColor clearColor];
}];
iOS 弹出透明窗体viewcontroller【兼容iOS8以上】
标签:
原文地址:http://www.cnblogs.com/swu-luo/p/4602869.html