How can I change the name of an iOS app in Xcode?

ios, xcode

Solution

- Go to Targets in Xcode.

- Build Settings on your project's target (your current development name).

- Search for Product Name under Packaging. Change its value to what you want your new project name to be.

Problem

I began an iPhone project the other day with a silly development code name, and now I want to change the name of the project since it's nearly finished. How can I do this?

Original source

Related problems