AngryHacker
AngryHacker

Reputation: 61606

How to change the name of the app on the iPhone?

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?

Upvotes: 1

Views: 465

Answers (2)

cdespinosa
cdespinosa

Reputation: 20799

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.

Upvotes: 3

Henrik P. Hessel
Henrik P. Hessel

Reputation: 36617

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

alt text

Upvotes: 1

Related Questions