3

When I create an XCode project, there is a copyright notice commented out. I know that there is an special terminal command for editing this. Anyone knows it?

icodebuster
  • 8,890
  • 7
  • 62
  • 65
Thanks
  • 40,109
  • 71
  • 208
  • 322

2 Answers2

6

Try:

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

or just add a company name to your card in Address Book.

mouviciel
  • 66,855
  • 13
  • 106
  • 140
  • 1
    In case changing your address book card is not working for you, ensure that the system knows that the card is indeed yours. You can do that from Card menu - option "Make My Card" – bhavinb Jun 21 '11 at 09:02
4
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ORGANIZATIONNAME = "My Company"; }'
Aaron Brager
  • 65,323
  • 19
  • 161
  • 287
stuartd
  • 70,509
  • 14
  • 132
  • 163