我认为我希望透明。我已经将背景设置为默认值,但每次我执行segue时,视图首先是透明的,就像我希望的那样,但随后变为灰色。谁能告诉我我的问题是什么?
答案 0 :(得分:1)
在firstViewController
像往常一样做segue
firstViewController
:
self.performSegueWithIdentifier("secondViewController", sender: nil)
然后在secondViewController
中添加backgroundColor
secondViewController
:
fun viewDidLoad(){
// Set your backgroundColor and add blur effect
self.view.backgroundColor = ....
}