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 關注
- 1287 瀏覽
添加回答
舉報