These instructions are adapted from the Apple instructions for the same task using Project Builder . Renaming a project in XCode is a bit convoluted, however it only takes a few minutes and is certainly quicker than recreating the project from scratch in my opinion. Here is how …
Assume you are starting with a project named “MyWOProject” and that you want to change its name to “MyNewWOProject”.
% cd /Users/kieran/MyNewWOProject/MyNewWOProject.xcode List the contents with % ls -al Open the file project.pbxproj with a text editor (such as vi for example , as I do here)... % vi project.pbxproj
:%s/MyWOProject/MyNewWOProject/g Save and exit vi by typing literally a colon, the letters 'w' and 'q'... :wq