其他分享
首页 > 其他分享> > iOS中多个storyboard之间的跳转

iOS中多个storyboard之间的跳转

作者:互联网

原文链接:https://my.oschina.net/zyboy/blog/617418

在iOS开发中,一个工程中可以有多个storyboard,这样可以更方便的进行多人开发以及管理。
实现步骤:

1.新建一个工程,在工程中添加一个storyboard

新建的工程一般都自带一个Main.stroyboard,我们还需要建两一个storyboard,命名为Other.storyboard,
这里写图片描述

2.设置Other.stroyboard

在Other.stroyboard中添加一个ViewController,并把Is Initial View Controller勾选作为启动ViewController,设置背景色,添加label作为标示

这里写图片描述

3.设置Main.storyboard

Main.storyboard默认有一个ViewController,在这个控制器添加一个Button,点击Button触发storyboard跳转,为Button添加出发事件,写下以下代码就完成了

- (IBAction)toOtherStoryboard:(id)sender {
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Other" bundle:nil];
    //Other为另一个Storyboard的名字
    [UIApplication sharedApplication].keyWindow.rootViewController = storyboard.instantiateInitialViewController;
}

这里写图片描述

4.结果

这里写图片描述

转载于:https://my.oschina.net/zyboy/blog/617418

标签:storyboard,ViewController,iOS,stroyboard,Other,跳转,Main,添加
来源: https://blog.csdn.net/chunbo4007/article/details/100677729