美文网首页
present 半透明页面

present 半透明页面

作者: Heikki_ | 来源:发表于2018-08-28 17:38 被阅读33次

A.present(B, animated: true, completion: nil)

需要如下操作

A:

func presentButtonDidClick(sender: UIButton) {
        let B = BVC()
        vc.view.backgroundColor = UIColor(displayP3Red: 1, green: 0, blue: 0, alpha: 0.4)
        present(B, animated: true, completion: nil)
    }

B:


override func viewDidLoad() {
        super.viewDidLoad()
        self.modalPresentationStyle = .custom
    }

相关文章

网友评论

      本文标题:present 半透明页面

      本文链接:https://www.haomeiwen.com/subject/gcpqwftx.html