Renaming Projects
Some are having trouble figuring out how to rename projects in Xcode 4. As it happens, Apple’s made things quite easy. It renames the project and the product names of any targets sharing the project’s name and any strings it finds in your nib/xib files. In theory, that is.
Here’s how:
- Open the project in Xcode 4.
- Click the project itself in the Project Navigator.
- Open the Utility pane (the right-most button in the View button panel in the right side of the toolbar).
- Select the File Inspector utility pane if it’s not already.
- Under the Identity group, set the Project Name field to whatever you like and press return.
- You’ll be asked which items to rename (including any targets or strings in nib/xib files sharing the same name as the project).
- Cherry pick which ones you want to rename (probably all of them) by unchecking those you don’t, then click Rename.
- You may be asked to take a snapshot of the project. My advice? Do it. Xcode 4 still has bugs and crashed on me the first time I tried this, resulting in a screwed up project. Click Enable to enable snapshots if asked.
- Assuming there are no errors, all checked items will have a green checkmark next to them and the rename sheet’s button will turn to Ok. Click it and you’re done.
Happy coding!


I renamed a project, but now the (git) version control no longer works because it’s still looking for the old project file in its path. Is there a way to fix this? Thanks.
Xcode should’ve updated Git if you used the method in this article. If it didn’t and you’re not familiar with Git on the command line, find a good tutorial so you can stage and commit the changes via the terminal.