我有 UIViewController 称为 TestVC,其背景设置为 clearColor:
@implementation TestVC
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor clearColor];
}
@end
我通过以下方式从另一个视图控制器呈现 TestVC:
self.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentViewController:[[TestVC alloc] init] animated:YES completion:NULL];
但是目前的 TestVC 是白色的,它会遮挡屏幕。有没有办法让它透明或部分遮盖底层视图控制器?
谢谢