Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone is it possible to have a shortened version of the app name for the home screen?

I noticed that most of the labels on the iPhone4 retina display home screen are about 10 letters or less. App names longer than that get truncated in the middle. So if I name my app Alex's App, it will display in full, but if I name it Alex's Fantastically Awesome app, the name would appear as something like Ale...ome App.

Is it possible to declare the "display" name of the app for the home screen which is different from the name used to list the app on the app store? Kind of like a nick name? Is there some sort of property in my Xcode project that controls this?

like image 928
Alex Stone Avatar asked Jan 26 '26 01:01

Alex Stone


2 Answers

You can change the name of your app that will be displayed in the Info.plist file of your project, by using the Bundle display name key.

This is the name that will be displayed on the Springboard below the app icon, regardless of how you name your app in ItunesConnect.

like image 170
Mutix Avatar answered Jan 28 '26 18:01

Mutix


Open up the InfoPlist.strings file inside your Xcode project, and add the following:

"CFBundleDisplayName~ipad" = "My Long App Name"; // eg, for iPad/retina
"CFBundleDisplayName" = "My App"; // eg, for non-retina
like image 31
Luke Avatar answered Jan 28 '26 16:01

Luke