模态出页面,半透明效果
2019-07-01 本文已影响0人
想飞的菜鸟
/这是要模态出的页面/
QuitViewController *quitVC = [[QuitViewController alloc]init];
self.definesPresentationContext = YES;
quitVC.modalPresentationStyle = UIModalPresentationCustom;
// UIModalPresentationCustom修改不同,可以实现不同效果
quitVC.view.backgroundColor = [UIColor colorWithWhite:0.f alpha:0.7];
[self presentViewController:quitVC animated:YES completion:^{
}];