tags:

views:

240

answers:

2

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?

+3  A: 
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ORGANIZATIONNAME = "My Company"; }'

See this page for more options.

Stuart Dunkeld
+4  A: 

Try:

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

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

mouviciel