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模式,不要在模态视图里边设置。
网友评论