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

Modal Segue To Navigation Controller With Transparent View Turns Grey

我有一个观点,我想保持透明。我已将背景设置为默认值,但每次我进行 segue 时,视图首先按照我希望的方式透明,但随后变为灰色。谁能告诉我我的问题是什么?

在你的 firstViewController 中照常进行 segue

firstViewController:

self.performSegueWithIdentifier("secondViewController", sender: nil)

然后在您的secondViewController中添加背景颜色

secondViewController:

fun viewDidLoad(){
    // Set your backgroundColor and add blur effect
    self.view.backgroundColor = ....
}