我创建了一个工作区,并在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 Project中。