Reputation: 877
If my app's product name was "AppName: Some Description", I just want "AppName" to show as a name underneath the app icon on iOS home screen. I did some searching and found this SO question (Change name of iPhone app in Xcode 4). I'm using Xcode 6 and I cannot find the Bundle Display Name in the Info.plist. Can someone please tell me how to do this in Xcode 6.
Thanks
Update:
Simply place your cursor to the Info.plist and click on the + button. Select "Bundle display name" and insert name in the value section.
Upvotes: 10
Views: 6505
Reputation: 22232
To change the name appearing underneath your app icon, modify the CFBundleDisplayName key in your Info.plist.
If it doesn't, add it to your list as follows:
- Click on any entry in your list, then click the "+" button. - Choose Bundle display name from the ensuing pop-up menu.
Double-click in the Value column of Bundle display name.
Enter a new value for Bundle display name as shown in Figure
Upvotes: 3
Reputation: 564
Bundle Name is what you have to set in the info.plist to display the name on the iOS home screen
Edit:
you still have bundle display name in xcode 6. Just add it in the info.plist
Upvotes: 16