不同storyboard间跳转

 

小项目中用到storyboard,可以按照模块来新建多个sb。

以下是代码实现跳转实现:

    UIStoryboard *anSb=[UIStoryboard storyboardWithName:@"Another" bundle:nil];
    AppDelegate *appDelagate=[UIApplication sharedApplication].delegate;
    appDelagate.window.rootViewController=[anSb instantiateInitialViewController];

 

posted @ 2014-08-14 00:33  令狐葱同学  阅读(564)  评论(0编辑  收藏  举报