我用来mogenerator
从我的Core Data
数据模型生成我的实体。
但是我有很多生成的文件,我想将它们发送到几个子目录中,例如:
Human
|
----> User
|
----> Products
|
----> ...
Entities
|
----> User
|
----> Products
|
----> ...
目前,我只有 Human 和 Entities 子目录可以发送_Model
和Model
归档。
每次生成模型时,我都可以创建目录并将每个文件拖放到链接的子目录中,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