swift 对于模态视图背景为半透明的设置

 let vc = YLJGoodsDetailSubViewController()

        vc.view.backgroundColor=UIColor(red:0, green:0, blue:0, alpha:0.5)

        vc.modalPresentationStyle = UIModalPresentationStyle.custom

        self.present(vc, animated:true, completion:nil)

1.在创建控制器的时候设置背景色及模式为.custom模式,不要在模态视图里边设置。

你可能感兴趣的:(swift 对于模态视图背景为半透明的设置)