Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone XCode - How to change title below app icon

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

like image 476
teepusink Avatar asked Feb 03 '10 05:02

teepusink


People also ask

How do you change the name of an app icon?

Tap on the app name. Information about the app shortcut displays in the right pane. Tap the area that says “Tap to change label”. The “Rename shortcut” dialog box displays.

How do I change my app name in Xcode?

Build Settings> Change "Product Name" TARGETS> Select app> Change "Display Name"


1 Answers

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

Note: CFBundleDisplayName is different from CFBundleName. CFBundleDisplayName is the human visible/marketing name displayed on the device home screen, under the icon etc. While CFBundleName is the filename of the IPA and the folder for the app on the file system, 'Whatever' for example would be archived as Whatever.ipa and the app would be installed on a device under the folder called Whatever.app.

like image 150
Nithin Avatar answered Sep 19 '22 13:09

Nithin