弹出一个透明的Controller

来源:互联网 发布:mac怎么改变图片格式 编辑:程序博客网 时间:2024/05/01 08:17

DSLuckController *luckVC = [[DSLuckController alloc]init];        luckVC.modalPresentationStyle = UIModalPresentationOverCurrentContext;          [self presentViewController:luckVC animated:YES completion:^{            luckVC.view.backgroundColor = [UIColor blackColor];            luckVC.view.alpha = 0.5;        }];


0 0