objective c - iPhone XCode - How to change title below app icon -
What is the best way to rename an app so that the title is empty space under the app icon, but build files in 't There is an empty space (i.e., the title is "my project" and build file is MyProject.app)
I changed PRODUCT_NAME but when I do this, there is also an empty space in the app file.
Naming all areas starts to work properly, I can not find EXECUTABLE_NAME, which is the default value of "executable file".
Thank you, T
The code you want to change is bundle display The name
( Info.plist
file with 'your desired name' from $ {PRODUCT_NAME}
.
Note: is different from CFBundleDisplayName
CFBundleName
. CFBundleDisplayName
is the human view / marketing name shown on the home screen of the device, under the icon etc. Where CFBundleName
is the file name and folder for the file's IPA file system, for example whatever it is stored in the form of whatever .a
and whatever.app
.
Comments
Post a Comment