Reputation: 5761
I'm wanting to change app display name for my iOS Project on XCode. The problem is that once I change PRODUCT NAME
on build settings, I start getting hundred of linking errors on test project. It doesn't find classes anymore
On all test clasess I had import MyAppOldName
and I was forced to change it to import MyAppNewName
. Even after this change, linker errors persist.
I just want to change the display name, don't want to struggle with XCode for 2 hours just because of this.
Upvotes: 4
Views: 1568
Reputation: 318804
In Xcode, select your target. Then select the "Info" tab. Find the "Bundle display name" key. Most likely its current value is ${PRODUCT_NAME}
. Simply replace that value with the text of the name you wish to appear under the app icon.
If there is no "Bundle display name" entry, add a new key and select "Bundle display name" from the dropdown list.
This change will have no other effect other than changing the name under the icon.
Upvotes: 7