标签:ios presentviewcontrolle 推出的页面是半透明的
#pragma mark -- 实现的重点在于modalPresentationStyle这个属性的使用和推出页面背景色的设置
SSViewController *ssVC = [[SSViewController alloc] init];
ssVC.modalPresentationStyle = UIModalPresentationOverFullScreen;
[ViewController presentViewController:ssVC animated:YES completion:^{
}];
- (instancetype)init{
self = [super init];
if (self) {
self.view.backgroundColor = [UIColor clearColor];
}
return self;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:ios presentviewcontrolle 推出的页面是半透明的
原文地址:http://blog.csdn.net/a_ss_a/article/details/47786393