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.
But I\'m n
In Xcode 3.2 just select the Project entry in the Groups & Files panel, then select the menu item Project -> Rename… Worked for me.
Xcode 7/8? It's in the plist that your target uses
For sake of gathering all relevant information in one place, here is the official answer to this question - and it is the only one that worked for me on Xcode 5.1.1
Just use the Identity and Type pane in Xcode.
For Xcode 11, if you want to change the App Display Name then simply go to plist and simply replace value of CFBundleDisplayName
<key>CFBundleDisplayName</key>
<string>Your App Name</string>
1. Select Target
2. Select Info
3. Insert Bundle Display Name and set App Title
In new versions of Xcode (Xcode 5 too) to change the name of the project follow this simple (detailed as possible) steps:
Note: In this example I'll change a hypothetical "Sample" name to a "Test" one.
Click twice slowly on the project root in the project navigator and then it becomes editable.
Rename the project.
After pressing 'ENTER' the assistant will suggest you to automatically change all project-name-related entries and will allow you to de-select some of them, if you want.
Press 'RENAME' and Xcode will do the rest. In the meanwhile Xcode may ask you about the option of making a snapshot of the project (it is very recommendable to do so).
In addition to renaming the project, you may want to rename the scheme so that it matches your new project name.
Repeat similar steps like 1 and 2, and press OK.
That's it.
Another scenario ... The previous explanation was related to changing the project name, but chances are that you only need to change the display name that appears below the app icon in the home screen. These are the steps:
In the "Supporting Files" group locate the info.plist (or related) file
Locate the "Bundle display name" key and change the value to the new name.
Delete the "old" app from the simulator or any other testing device.
Clean and Rebuild your app again.
That's it, you will now see the new app name in your home screen.