I am new developer to use XCode I trying to Create custom project template and any how I success but I create folder using Groups key in .plist file. Folder which are created after selecting my custom project template have no physical existence. I want to create folder which have physical existence please help me out from this problem. Thanks in Advance
Asked
Active
Viewed 730 times
2 Answers
0
In .plist file add these lines. It will create folder and group of AppDelegate class.
<key>Classes/AppDelegate/AppDelegate.h</key>
<dict>
<key>Group</key>
<array>
<string>Classes</string>
<string>AppDelegate</string>
</array>
<key>Path</key>
<string>Classes/AppDelegate.h</string>
</dict>

Akshada-Systematix
- 321
- 3
- 17
0
I have implemented it by below line of code.
<key>Classes/AppDelegate/AppDelegate.h</key>
<dict>
<key>Group</key>
<array>
<string>Classes</string>
<string>AppDelegate</string>
</array>
<key>Path</key>
<string>Classes/AppDelegate.h</string>
</dict>
Add this line of code in your template .plist file it will create folder as well as group of AppDelegate class

anshul-systematix
- 416
- 3
- 12
-
Should be
Path Classes/AppDelegate/AppDelegate.h ? – BaSha Apr 29 '16 at 09:19 -
@AnshulKhandelwal i am also using above code for my Appdelegate.swift file but its not working for me do you have any idea. – Sunil M. May 01 '17 at 10:43