views:

82

answers:

1

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

+1  A: 

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

ImHuntingWabbits