Reputation: 11340
Where Could I set the application name that user see in home screen, under the application icon.
Upvotes: 4
Views: 2147
Reputation: 23722
Add the following line to the InfoPlist.strings
file:
CFBundleDisplayName = "My Great App";
The advantage of this method (as opposed to the entry in Info.plist
) is that you can provide localized app name for several locales.
Upvotes: 11
Reputation: 8449
Set "Bundle display name" in the Info.plist or your App settings file.
Upvotes: 5