我想提供透明的视图控制器以查看下面的父级
// RootViewController.m
SecondViewController *svc = [[SecondViewController alloc] init];
[self presentViewController: svc animated: YES completion:nil];
我的SecondViewController被调用并且启动时只有1秒透明,然后变成黑色不透明,即使我尝试过以下代码:
// SecondViewController.m
self.modalPresentationStyle = UIModalPresentationCurrentContext;
[self.view setBackgroundColor: [UIColor colorWithRed: 51 green: 51 blue:51 alpha: 0.5]];
但它没有帮助,它在1秒内仍然是透明的,然后再不再透明了。
如何透明ViewController以查看父级?
感谢阅读。