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

present半透明UIViewController

时间:2015-12-21 15:55:09      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

present一个半透明的UIViewController,跟add个view差不多的意思,一般会遇到的问题是跳转到下一个页面加载完背景色又变回去了,没有半透明的效果,加上一句代码就好了。

1,present 一个UIViewController

SecondViewController *secondVC = [[SecondViewController alloc]init];
            secondVC.modalPresentationStyle = UIModalPresentationOverCurrentContext;
            [self.navigationController presentViewController:secondVC animated:YES completion:^{
                
            }];

2,present 一个UINavigationController,注意修改的是UINavigationController的modalPresentationStyle。

SecondViewController *secondVC = [[SecondViewController alloc]init];
            UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:secondVC];
            nav.modalPresentationStyle = UIModalPresentationOverCurrentContext;
            [self.navigationController presentViewController:nav animated:YES completion:^{
                
            }];

 

present半透明UIViewController

标签:

原文地址:http://www.cnblogs.com/lilufeng/p/5050362.html

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