码迷,mamicode.com
首页 > 移动开发 > 详细

iOS故事板下使用代码跳转页面

时间:2015-01-07 23:20:51      阅读:382      评论:0      收藏:0      [点我收藏+]

标签:

如今iOS8下,使用Storyboards开发十分方便,搭配上Size Class后,并且适配更加便捷。

但是突然由代码写界面或者xib转向故事板,难免有一些疑惑。

由于故事板下,基本使用连续来跳转页面,但有些情况下总会用到代码控制页面跳转,这个时候传统的初始化ViewController后push过去会出现一个黑色屏幕,什么内容都没用。

解决方案:

UIStoryboard *story = [UIStoryboard storyboardWithName:@"填写故事板名称" bundle:nil];
UIViewController *vc = [story instantiateViewControllerWithIdentifier:@"填写ViewController在故事板中设置的identifier"];

[vc setModalPresentationStyle:UIModalPresentationFullScreen];

[self.navigationController pushViewController:vc animated:YES];

 

iOS故事板下使用代码跳转页面

标签:

原文地址:http://www.cnblogs.com/mo-shou/p/4209614.html

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