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

跨Storyboard调用

时间:2015-07-06 19:21:39      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:

在开发中我们会有这种需求从一个故事板跳到另一个故事板

modal

1     UIStoryboard *secondStoryboard = [UIStoryboard storyboardWithName:@"Storyboard1" bundle:nil];//获取故事板
2     UIViewController *firstVC = [secondStoryboard instantiateViewControllerWithIdentifier:@"firstVC "];//获取故事板中的页面
3    [self presentViewController:firstVC animated:YES completion: nil];

push

1 UIStoryboard *secondStoryboard = [UIStoryboard storyboardWithName:@"Storyboard1" bundle:nil];
2 UIViewController *firstVC = [secondStoryboard instantiateViewControllerWithIdentifier:@"firstVC "];
3 [self.navigationController pushViewController:firstVC animated:NO];

注:获取故事板中的页面有两种方法

- (id)instantiateInitialViewController;//默认加载故事板中入口的页面

- (id)instantiateViewControllerWithIdentifier:(NSString *)identifier;//按照指定ID找页面,可以加载故事板中任意的页面

跨Storyboard调用

标签:

原文地址:http://www.cnblogs.com/zhangjingyangjinjin/p/4624887.html

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