#pragma mark -- 实现的重点在于modalPresentationStyle这个属性的使用和推出页面背景色的设置
SSViewController *ssVC = [[SSViewController alloc] init];
ssVC.modalPresentationStyle
= UIModalPresentationOverFullScreen;
[ViewController presentViewController:ssVC animated:YES completion:^{
}];
同时将SSViewController的背景色设置成 clearColor
- (instancetype)init{
self = [super init];
if (self) {
self.view.backgroundColor = [UIColor clearColor];
}
return self;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-12 09:39:42