How would I change the initial templates created by Xcode when creating a new Cocoa Class.
I am referring to the comments and class name created when using Xcode's new class wizard.
|
|
|
You wouldn't change the existing templates. In other words, don't modify anything under the Instead, clone the templates you want to have customized variants of. Then change their names and the information in them. Finally, put them in the appropriate location in your account's
That way they won't be overwritten when you install new developer tools, and you can tweak them to your heart's content. |
|||||||||||||||||
|
|
Xcode uses template files for file and project templates and does variable expansion in both at creation time. Xcode 3.0 templates can be found in [Dev Installation]/Library/Xcode/, likely /Developer/Library/Xcode. If you want to modify these templates or add your own, use the following directories to save your new/modified templates so that they are not wiped out by future Developer Tool upgrades:
I think that you can also use the /Library/Developer/Shared/Xcode/[File|Target|Project] Templates/ directory for templates shared by all users. If you just want to change the MyCompanyName in the templates, the following command line will do the trick:
A good tutorial on writing file templates is here [MacResearch.org]. |
|||||||
|
|
In Xcode 4 the user file templates can be placed at: [Category] can be used to categorize your templates (choose a name of your choise) If the folder doesn't exist already, create it! |
|||||||
|
|
For Xcode 4.4, none of the previously mentioned methods work. This gist provides a partial hacky solution. Please fork and enhance if you know a better way. |
||||
|
|
|
In XCode 4.5 right click on project, click Show File Inspector, then change Organization name in the file inspector's second tab (Project Document group) |
|||
|