具有透明视图的模态搜索导航控制器变为灰色

时间:2016-01-03 08:07:15

标签: ios swift presentmodalviewcontroller

我认为我希望透明。我已经将背景设置为默认值,但每次我执行segue时,视图首先是透明的,就像我希望的那样,但随后变为灰色。谁能告诉我我的问题是什么?

1 个答案:

答案 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 = ....
}