跳入新的storyboard

-(IBAction)onClickButton:(id)sender
{
    UIStoryboard *stryBoard=[UIStoryboard storyboardWithName:@"second" bundle:nil];
    [self presentModalViewController:[stryBoard instantiateInitialViewController] animated:YES];
}
原文地址:https://www.cnblogs.com/woaixixi/p/4611051.html