美文网首页工作生活
模态出页面,半透明效果

模态出页面,半透明效果

作者: 想飞的菜鸟 | 来源:发表于2019-07-01 18:29 被阅读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:^{

    }];

    相关文章

      网友评论

        本文标题:模态出页面,半透明效果

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