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

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

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

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

 

posted on 2016-05-12 12:50  68tour  阅读(190)  评论(0编辑  收藏  举报

导航