将 iOS Storyboard 项目包含到另一个项目中?

Posted

技术标签:

【中文标题】将 iOS Storyboard 项目包含到另一个项目中?【英文标题】:Include an iOS Storyboard project into another one? 【发布时间】:2012-01-06 10:02:41 【问题描述】:

我和其他人在同一个项目中工作,但分开工作。想象第一个人创建了一个带有 UITableViewController 的 Storyboard 项目。第二个想要将前一个元素包含在他自己的 Storyboard 项目中。如何连接这两个 Storyboard 项目?

谢谢

【问题讨论】:

您可以使用软件版本控制系统(也称为 svn)。否则你必须手动合并。 我认为版本控制在这里没有帮助。故事板是在未记录的 XML 中,我不想尝试在 SVN 中合并它们…… 【参考方案1】:

我有一个解决方案:只需根据需要创建一个属性或变量。例如:

    @property (strong, nonatomic) UIStoryboard * storyboard1;
    @property (strong, nonatomic) UIStoryboard * storyboard2;

    .....

    .m
    -(void)initMyStoryboards
       storyboard1 = [UIStoryboard storyboardWithName:@"storyboard1" bundle:nil];
       storyboard2 = [UIStoryboard storyboardWithName:@"storyboard2" bundle:nil];
    

    -(void)launchViewFromS1
         //use view in storyboard1
         MyViewController1 *myViewController = [self.storyboard1 instantiateViewControllerWithIdentifier:@"MainView"];
         ....
    

    -(void)launchViewFromS2
        //use view in storyboard2
        MyViewController2 *myViewController2 = [self.storyboard2 instantiateViewControllerWithIdentifier:@"OtherView"];
        ....
    

其他例子:

-(void)launchMyView
    UIStoryboard * storyboard = [UIStoryboard storyboardWithName:@"storyboard1" bundle:nil];
    ViewController1 *myViewController =[storyboard instantiateViewControllerWithIdentifier:@"MainView"];
    ....

【讨论】:

以上是关于将 iOS Storyboard 项目包含到另一个项目中?的主要内容,如果未能解决你的问题,请参考以下文章

在 SWIFT 语言的 Storyboard 中将值从一个 ViewController 传递到另一个 ViewController

如何加载存在于 Xamarin.iOS 中的共享库项目中的第二个 Storyboard

除非当前场景中存在所有数据,否则如何防止转到另一个 Storyboard 场景?

将视图从storyBoard复制到另一个时xcode卡住了?

在 iOS LaunchScreen.storyboard 中放置图像会完全禁用启动屏幕

IOS 基于页面的应用程序:如何跳转到另一个页面