views:

1420

answers:

1

Hi,

What is the best way to rename the app so that the title below the app icon can have spaces but the build files doesn't have spaces. (ie, title is "My Project" and build file is MyProject.app)

I changed PRODUCT_NAME but when I do that the app file also contains spaces.

Renaming all the fields seems to work fine except I can't find EXECUTABLE_NAME which is the default value for "Executable file".

Thank you, Tee

+5  A: 

The field that you have to change is the Bundle Display Name in the info.plist file from ${PRODUCT_NAME} to 'your desired name'

Nithin
Damn now that you tell me, it's pretty easy to do. But it took me over an hour trying. Thx Nithin!!!
teepusink