我有一个UIViewController
,它提供了另一个ViewController
:
let blurryVC = BlurryViewController(names: ["name1, "name2", "name3"]) let navigationC = UINavigationController(rootViewController: blurryVC) self.modalPresentationStyle = .overFullScreen self.present(navigationC, animated: true, completion: nil)
BlurryViewController
我有一个UIVisualEffectView
,当我提出这个VC
时,模糊效果大约1秒,然后变黑。我认为背后的VC
的观点发生了一些事情。
当我出示它时,如何防止它变黑?
谢谢!