Move or copy view controller from one storyboard to another

前端 未结 9 836
暖寄归人
暖寄归人 2021-01-30 19:46

I have several UIViewControllers in one Storyboard. Now I want to move some UIViewControllers to another Storyboard. Is it possible?

9条回答
  •  别那么骄傲
    2021-01-30 20:04

    I think it is possible....

    UIStoryboard *secondStoryBoard = [UIStoryboard storyboardWithName:@"secondStoryBoard" bundle:nil];
    
    UIViewController *theTabBar = [secondStoryBoard instantiateViewControllerWithIdentifier:@"myTabBar"];
    
    [self.navigationController pushViewController:theTabBar animated:YES];
    

提交回复
热议问题