码迷,mamicode.com
首页 > 其他好文 > 详细

present出ViewController的页面为透明的

时间:2015-08-19 20:22:14      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:ios   presentviewcontrolle   推出的页面是半透明的   

#pragma mark -- 实现的重点在于modalPresentationStyle这个属性的使用和推出页面背景色的设置


 SSViewController *ssVC = [[SSViewController alloc] init];

 ssVC.modalPresentationStyle = UIModalPresentationOverFullScreen;

 [ViewController presentViewController:ssVC animated:YES completion:^{

        

  }];


同时将SSViewController的背景色设置成 clearColor

- (instancetype)init{

    self = [super init];

    if (self) {

        self.view.backgroundColor = [UIColor clearColor];

    }

    return self;

}



版权声明:本文为博主原创文章,未经博主允许不得转载。

present出ViewController的页面为透明的

标签:ios   presentviewcontrolle   推出的页面是半透明的   

原文地址:http://blog.csdn.net/a_ss_a/article/details/47786393

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!