Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know how to change copyright in the templates for xcode? e.g. at the top of a new file it writes

//  Copyright 2011 {Company Name}. All rights reserved.

In previous XCode versions you could change it by running the following command in the terminal:

defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = “{Company Name}";}’

In Xcode 4.0 this method no longer works.

share|improve this question
Does it work if you set the company field for your own entry in Address Book? – rightfold Apr 24 '11 at 10:58
I tried changing that, and gave the computer a reset to no success. – woot586 Apr 24 '11 at 11:13

5 Answers

up vote 52 down vote accepted

Xcode 4 stores this on a per-project basis.

If you select the project in the Project Navigator (Cmd-1) and open the File Inspector (Cmd-Opt-1), you'll see a field for "Organization" under "Project Document".

share|improve this answer
Spot on, Thanks! – woot586 Apr 24 '11 at 11:38
5  
Doesn't seem to work in Version 4.5 (4G108j) – Kheldar Jul 13 '12 at 11:09

You can find the template files in /Developer/Library/XCode/Templates/

share|improve this answer
Thanks Macmade. For any one looking todo this I have replaced “___ORGANIZATIONNAME___" in each of the files with what I want the copyright to be. – woot586 Apr 24 '11 at 11:01
Does seem a bit long winded tho... – woot586 Apr 24 '11 at 11:15
Sadly, Apple has deleted the /Developer folder for Lion/Mountain Lion. This answer doesn't work any more :( – Adam Oct 7 '12 at 15:38
The same folder hierarchy can now be found inside the xCode application bundle. – Macmade Oct 7 '12 at 16:04

__MyCompanyName__ being ugly (or if you aren't coding for the company set up in your profile), let's change it.

  1. Click on your project root in the Project Navigator on the left

  2. Enable your Utilities view on the right while the project root is highlighted

  3. Select the File Inspector, while the Identity displays your Project Name.

  4. Under Project Document is a text field called Organization. That's the proper place to set the value you want.

share|improve this answer

Simply go to the Address Book application on your Mac and change the company name that is listed under your own address card.

share|improve this answer

Goto Stackoverflow link given and see the answer by "Sri Sankaran" Define __MyCompanyName__ in XCode per project?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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