我想让视图控制器的视图半透明。为此,我在viewDidLoad
方法中设置了这样的背景颜色。
view.backgroundColor = UIColor(white: 0, alpha: 0.5)
当显示视图控制器时,背景显示为我需要它,然后它立即变黑。
为什么会这样?
这是显示PopupViewController
:
@IBAction func didTapShowButton(_ sender: UIButton) {
let navController = UINavigationController(rootViewController: PopupViewController())
present(navController, animated: true, completion: nil)
}
我上传了一个演示项目here。
答案 0 :(得分:6)
您可以添加标记overCurrentContext
(或custom
),因此您的present
可能类似于:
@IBAction func didTapShowButton(_ sender: UIButton) {
let navController = UINavigationController(rootViewController: PopupViewController())
navController.modalPresentationStyle = .overCurrentContext
present(navController, animated: true, completion: nil)
}