views:

48

answers:

2

I did this before, but can't remember it now.

I want to change what appears under the icon of my app on the home screen. Where in Xcode do I do this?

+1  A: 

Yes, you can do this in your info.plist file (included in your xcode project). The Key is "Bundle display name"

alt text

Henrik P. Hessel
Thank you. I was going crazy.
AngryHacker
+3  A: 

As implied by the fact that "Bundle display name" is usually $(PRODUCT_NAME), you should actually set the "Product Name" build setting in your Target's build setting, for all configurations, and let it propagate to all the places that depend on it.

cdespinosa
This is correct -- always change the variable value, that way every place that uses it gets updated correctly.
John Rudy