我创建了一个工作区并在 Xcode 工作区中添加了两个项目。一个新的和一个现有的。我想在新项目中点击一个按钮来访问现有项目的故事板。我可以这样做吗?
现有项目与许多库链接,其中之一是 Tapku 库。它工作正常,但我想在那里有一个新项目和一些按钮,当我点击一个按钮时,我会访问现有项目故事板,然后使用那个所谓的应用程序。
谢谢你。
这就是我试图做的:
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Main_iPad" bundle:nil];
UIViewController *vc = [sb instantiateViewControllerWithIdentifier:@"LoginView"];
vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:vc animated:YES completion:NULL];
我有错误:
Could not find a storyboard named 'Main_iPad' in bundle NSBundle "somePath/Application1.app (loaded)
该故事板位于 Application2 项目中。