Atulkumar V. Jain
Atulkumar V. Jain

Reputation: 5098

How to change the name of the application without having to rewrite the code?

I am looking to change the name of the application, but dont want to rewrite the code.

Can anyone help me with this problem....

Thanx in advance

Upvotes: 0

Views: 151

Answers (1)

ImHuntingWabbits
ImHuntingWabbits

Reputation: 3827

You can change the application executable name that your app target compiles. The simple way to do this is:

  1. Expand the "Executables" section
  2. Highlight the executable you want to rename
  3. Click again to begin editing, and type in the name you want.

Alternatively you can update the bundle display name in info.plist, but this is really just substituting your build product, more on that here:

http://www.iphonedevsdk.com/forum/iphone-sdk-development/3530-rename-iphone-xcode-projects.html

Upvotes: 1

Related Questions