Change Company Name in XCode

If you create a new file in XCode, it will autogenerate a header like :

//
//  MyFileName.m
//  MyProjectName
//
//  Created by Hans Hamm on 24.11.09.
//  Copyright 2009 __MyCompanyName__. All rights reserved.
//

XCode below Version 3.2

To change __MyCompanyName__ to your company, just enter the following command into your mac terminal:

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

XCode Version 3.2 and higher

To change the company Name just open your project settings (e.g. by selecting your Project and hit the info button). In your project settings go to the “general” settings and enter your company into the field “Organization Name”
General Project Info


About this entry