美文网首页iOS随记
模态弹出一个半透明页面

模态弹出一个半透明页面

作者: valiant_xin | 来源:发表于2016-08-25 13:59 被阅读23次

    InputViewController *vc = [[InputViewController alloc] init];

    self.definesPresentationContext = YES;//这个必须要

    vc.view.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:.4];

    vc.modalPresentationStyle = UIModalPresentationOverCurrentContext;

    [self presentViewController:vc animated:YES completion:nil];

    模态弹出一个半透明页面,可以看到上一个页面的内容,弹出来的界面不需要做特殊处理。一般用于点击按钮进行回复。

    相关文章

      网友评论

        本文标题:模态弹出一个半透明页面

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