不同storyboard间跳转
小项目中用到storyboard,可以按照模块来新建多个sb。
以下是代码实现跳转实现:
UIStoryboard *anSb=[UIStoryboard storyboardWithName:@"Another" bundle:nil]; AppDelegate *appDelagate=[UIApplication sharedApplication].delegate; appDelagate.window.rootViewController=[anSb instantiateInitialViewController];