0

我用来mogenerator从我的Core Data数据模型生成我的实体。

但是我有很多生成的文件,我想将它们发送到几个子目录中,例如:

Human
  |
   ----> User
  |
   ----> Products
  |
   ----> ...

Entities
  |
   ----> User
  |
   ----> Products
  |
   ----> ...

目前,我只有 Human 和 Entities 子目录可以发送_ModelModel归档。

每次生成模型时,我都可以创建目录并将每个文件拖放到链接的子目录中,mogenerator但我正在寻找一个更智能的解决方案来自动化这个过程。

我不知道是否mogenerator可以管理这个,或者我是否需要为此使用脚本文件。

有什么建议么 ?

更新:主要困难是我必须将模型“链接”到子目录。例如:

ProductA类和ProductB类应该放在同一个目录中:Product

更新 2

例如,我有一些模型要生成:

用户接收者 AProduct(产品的抽象基类) ProductA(AProduct 的子类) ProductB(AProduct 的子类)

我想在子目录中分派这些类:

Human
  |
   ----> User
           |
            ----> User.h
           |
            ----> User.m
  |
   ----> Products
           |
            ----> AProduct.h
           |
            ----> AProduct.m
           |
            ----> ProductA.h
           |
            ----> ProductA.m
           |
            ----> ProductB.h
           |
            ----> ProductB.m

Entities
  |
   ----> User
           |
            ----> _User.h
           |
            ----> _User.m
  |
   ----> Products
           |
            ----> _AProduct.h
           |
            ----> _AProduct.m
           |
            ----> _ProductA.h
           |
            ----> _ProductA.m
           |
            ----> _ProductB.h
           |
            ----> _ProductB.m
4

0 回答 0