iOS 跳转至 指定 StoryBoard 中 指定的 Scene

UIStoryboard *stryBoard=[UIStoryboard storyboardWithName:@"second" bundle:nil];

    UIViewController *test=[stryBoard instantiateViewControllerWithIdentifier:@"testvc"];

         [self.navigationController pushViewController:test animated:NO];

原文地址:https://www.cnblogs.com/68tour/p/5485223.html