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

多个storyboard之间的跳转问题

时间:2015-11-13 14:36:29      阅读:533      评论:0      收藏:0      [点我收藏+]

标签:

    在使用xib画界面,将button的链接到对应的.m文件中,在该方法中添加相关的跳转代码,这样就完成了跳转的实现。

    在单独的storyboard中,多个viewcontroller跳转,将button连接到想要跳转的视图上,这样跳转的时候,就不用添加对应的代码,非常简单。例如:push和pop跳转,跳转方法是不用写的。

    在多个storyboard上,不同viewcontroller跳转问题。苹果也提供了对应的方法。

 

第一种:给segue标记个Identifier再用代码触发,要点:segue开始的那边都连在View界面上,,不要使用button进行连 ,要不然就不会跳转到需要的界面,

再用代码这样触发这个跳转的segue,如:

        self performSegueWithIdentifier:@"SegueName" sender:self];

第二种:能过取得storyboard文件里的viewController再用常规方法跳转,先设置storyboard里viewController的标志Storyboard ID

再用代码这样跳转:

            UIStoryboard *settingsStoryboard = [UIStoryboard storyboardWithName:@"Settings" bundle:nil];
            UIViewController *viewController = [settingsStoryboard instantiateViewControllerWithIdentifier:@"SettingsTableViewController"];
            
            [[self navigationController] pushViewController:viewController animated:YES];

 

多个storyboard之间的跳转问题

标签:

原文地址:http://www.cnblogs.com/gepf/p/4961874.html

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