pushViewController在UINavigationBar中具有怪异的渐变

问题描述 投票:1回答:1

[将新的viewcontroller推入堆栈时,我看到一个奇怪的渐变/蒙版大约一秒钟,然后它消失了enter image description here

我有一个UINavigationController来呈现一个视图,该视图具有一个编辑按钮,该按钮可以关闭呈现的视图,并在完成处理程序中推送一个新的视图。

ios swift uinavigationcontroller uinavigationbar
1个回答
0
投票
let changevc = UIViewController() // change this code as this is your view controller with edit button changeVC.modalPresentationStyle = .fullScreen //or .overFullScreen self.present(changeVC, animated: true, completion: nil)
© www.soinside.com 2019 - 2024. All rights reserved.