iOS中多个storyboard之间的跳转

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

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

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

新建的工程一般都自带一个Main.stroyboard,我们还需要建两一个storyboard,命名为Other.storyboard,
iOS中多个storyboard之间的跳转

2.设置Other.stroyboard

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

iOS中多个storyboard之间的跳转

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;
}

iOS中多个storyboard之间的跳转

4.结果

iOS中多个storyboard之间的跳转

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

上一篇:全屏DialogFragment


下一篇:c# – Xamarin Studio / VS for Mac Storyboard无法打开