Search code examples
iphoneiosxcodeorganizationcopyright-display

Changing Copyright "Organization" in xcode


I have already tried multiple ways.

  • defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{ORGANIZATIONNAME="YourNameHere";}'
  • Also i've tried changing the "Organization", section under Project Document.

Why will it still not change? Meaning whenever I make new project it still defaults to the old one.

// Copyright (c) 2012 IWantToChangeThis. All rights reserved.


Solution

  • There is a third way, which is to change the company name in your Address Book card, but I'm guessing that's not your problem. What any of these methods does is change the organization name for any new files you create in the project, and will not change the files that have already been created. If you want to change the existing files, you can do a find and replace for "__MyCompanyName__" across the whole project. Hope this helps.