3 回答
TA贡献1775条经验 获得超8个赞
以下代码仅适用于iPad。
self.view.backgroundColor = [UIColor clearColor];
self.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentModalViewController:modalVC animated:YES];
我会添加一个子视图。
这是一个很好的讨论。具体看一下评论。不只是答案。
模态视图
如果我是你,我不会做。我将添加一个子视图并执行此操作。看来我可以更好地控制事物。
编辑:
正如Paul Linsay所提到的,自iOS 8起,所需要的只是UIModalPresentationOverFullScreen用于呈现ViewController的modalPresentationStyle。这也将覆盖navigationBar和tabBar按钮。
TA贡献1777条经验 获得超10个赞
在iOS 8.0及更高版本中,可以通过将modalPresentationStyle属性设置为UIModalPresentationOverCurrentContext来完成
//Set property **definesPresentationContext** YES to avoid presenting over presenting-viewController's navigation bar
self.definesPresentationContext = YES; //self is presenting view controller
presentedController.view.backgroundColor = [YOUR_COLOR with alpha OR clearColor]
presentedController.modalPresentationStyle = UIModalPresentationOverCurrentContext;
[self presentViewController:presentedController animated:YES completion:nil];
- 3 回答
- 0 关注
- 1242 浏览
添加回答
举报