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.

link|improve this question

feedback

3 Answers

up vote 41 down vote accepted

You wouldn't change the existing templates. In other words, don't modify anything under the /Developer hierarchy (or wherever you installed your developer tools).

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 Library/Application Support folder, specifically:

  • File templates: ~/Library/Application Support/Developer/Shared/Xcode/File Templates/
  • Target templates: ~/Library/Application Support/Developer/Shared/Xcode/Target Templates/
  • Project templates: ~/Library/Application Support/Developer/Shared/Xcode/Project Templates/

That way they won't be overwritten when you install new developer tools, and you can tweak them to your heart's content.

link|improve this answer
I changed the actual templates in /Developer .. I don't have a "Developer" folder in my library. – Mk12 Aug 20 '09 at 21:57
4  
If you don't have the paths above, you can create them. Don't change the templates in /Developer, because they won't necessarily survive uninstall and reinstall of the tools. Treat it like /System. – Chris Hanson Aug 23 '09 at 1:06
1  
I still just change the ones in /Developer because then it actually changes it instead of creating new ones which are almost the same. Using the home directory library doesn't overwrite the /Developer one, it considers it a different template. I only use the home library for creating new templates, not changing existing ones. I can remember to move the templates before installing a new xcode, and by the way its not ~/Library/Developer/...., its ~/Library/**Application Support/**Developer/... – Mk12 Aug 28 '09 at 20:45
Yeah I have to do that too, because adding it in the home directory just creates a new template. As a side question, where can I find the template for the main file? Because when I write C, 'main.c' is written by default and it uses some separate template. – Martin Tuskevicius Feb 24 at 0:01
feedback

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:

  • File templates: ~/Library/Developer/Shared/Xcode/File Templates/
  • Target templates: ~/Library/Developer/Shared/Xcode/Target Templates/
  • Project templates: ~/Library/Developer/Shared/Xcode/Project Templates/

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:

defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ "ORGANIZATIONNAME" = "NewCompanyName";}'

A good tutorial on writing file templates is here [MacResearch.org].

link|improve this answer
Thanks, that worked! You're a genius. – Greg Jan 4 '09 at 21:12
Thanks! – Mk12 Sep 26 '09 at 1:25
For just changing the company name you can also change your user contact info: stackoverflow.com/questions/10245689/… – Elisabeth Apr 22 at 21:04
feedback

In Xcode 4 the user file templates can be placed at:
~/Library/Developer/Xcode/Templates/[Category]

[Category] can be used to categorize your templates (choose a name of your choise)

If the folder doesn't exist already, create it!

link|improve this answer
For me it actually is at /Developer/Library/Xcode/[category] – Dimitris Jan 20 at 13:51
1  
@Dimitris: This are the internal templates… I was talking about the USER templates, if you want to create new ones or customized variants like Chris Hanson suggested, and don't mess around with the original ones. – v01pe Jan 21 at 0:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.