xcode 4テンプレートを作成しようとしています。私は空のグループを作ることができないという事実を除いてすべてうまく動作します。Xcode 4テンプレート、空のグループを作成
私はこのプロジェクト構造を持っているしたいと思います: プロジェクト名 -Models -Controllers -Views -Services
<key>Definitions</key>
<dict>
<key>Views/RootViewController.h</key>
<dict>
<key>Group</key>
<string>Controllers</string>
<key>Path</key>
<string>RootViewController.h</string>
<key>TargetIndices</key>
<array/>
</dict>
<key>Views/RootViewController.m</key>
<dict>
<key>Group</key>
<string>Controllers</string>
<key>Path</key>
<string>RootViewController.m</string>
</dict>
<key>en.lproj/RootViewController.xib</key>
<dict>
<key>Group</key>
<string>Views</string>
<key>Path</key>
<string>RootViewController.xib</string>
</dict>
<key>en.lproj/MainWindow.xib</key>
<dict>
<key>Group</key>
<string>Views</string>
<key>Path</key>
<string>MainWindow.xib</string>
</dict>
<key>Services</key>
<dict>
<key>Group</key>
<string>Services</string>
<key>Path</key>
<string>Services</string>
<key>TargetIndices</key>
<array/>
</dict>
</dict>
<key>Nodes</key>
<array>
<string>en.lproj/MainWindow.xib</string>
<string>Views/RootViewController.h</string>
<string>Views/RootViewController.m</string>
<string>en.lproj/RootViewController.xib</string>
<string>Services</string>
</array>
ビュー・グループが作成される、ファイルがこのフォルダに追加されますので。
サービスグループも作成されますが、「サービス」というファイルがあります(拡張子なし)。
これは私のために完全に空白のフォーマットされていないファイルを作成します。 – Morkrom
もっと明示できますか?何を作成しようとしていますか、ソースファイルなど – crisisGriega
この場合、空のグループを作成するだけです。テンプレートフォルダ内の同じファイル構造でxmlをミラーリングすることになっていますか? – Morkrom