需求 vc1 present 一个半透明的 vc2
在 vc2 中设置了背景透明和颜色
在弹出过程中透明 完成后变成不透明了
解决:
let vc2 = SignInResultVC()
vc2.definesPresentationContext = true
vc2.modalPresentationStyle = .overCurrentContext
self.present(vc2, animated: true, completion: nil)
需求 vc1 present 一个半透明的 vc2
在 vc2 中设置了背景透明和颜色
在弹出过程中透明 完成后变成不透明了
解决:
let vc2 = SignInResultVC()
vc2.definesPresentationContext = true
vc2.modalPresentationStyle = .overCurrentContext
self.present(vc2, animated: true, completion: nil)