Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where Could I set the application name user see in home screen

Tags:

ios

Where Could I set the application name that user see in home screen, under the application icon.

like image 650
user836026 Avatar asked Dec 04 '22 17:12

user836026


2 Answers

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.

like image 162
Costique Avatar answered Dec 07 '22 07:12

Costique


Set "Bundle display name" in the Info.plist or your App settings file. enter image description here

like image 39
Alex L Avatar answered Dec 07 '22 06:12

Alex L