Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the organization name on an existing Xcode project

Tags:

xcode

ios

xcode6

I created a once off Xcode project but entered the organisation name in incorrectly. How can I change it?

like image 718
grabury Avatar asked Jan 10 '15 13:01

grabury


People also ask

What is organization name in Xcode?

The organization identifier is a way to uniquely identify yourself and your apps. It doesn't require you to have a website. The organization name is the name that appears in the copyright notice in the source code files Xcode creates.

How do I change created in Xcode?

you can try: System Preferences --> Users & Groups --> choose current User --> unlock -->right tap current User --> Advanced option --> change you full name & above account name to your want, save ,that is ok! I get it from How does Xcode know who the the project was "created by"?


2 Answers

There are two things you will need to do. With the project or target selected, you can update the "Organization" field in the "Project Document" section of the "Utilities" panel (usually on the right).

Next, for an existing source files, you will need to perform a search/replace to update the header comments. Only new files will automatically get the new organization name.

like image 192
picciano Avatar answered Oct 04 '22 08:10

picciano


Click on target -> click show the file inspector -> organization name text field edit organization name

enter image description here

If you need to edit Project name

1- select you'r project then press Enter edit name

2- show rename project content items

enter image description here

3- click rename

4- build your project

Note : If you use pod should change Target name in podfile then pod install ، You will find that he has created a new file newTarget.xcworkspace

like image 21
a.masri Avatar answered Oct 04 '22 07:10

a.masri