I know how to rename the project in Xcode 4, but how do you rename the source folder? The thing is that renaming the project in Xcode, does only rename within Xcode (Though it is progress compared to previous) - but why Xcode is not renaming the folder in the filesystem I don't know.

Thanks in advance

Regards

Christian

link|improve this question

64% accept rate
Is your last sentence complete or did you submit your question prematurely? – BoltClock Nov 24 '11 at 21:27
Hi, thanks for informing me - just edited the text. – user699215 Nov 25 '11 at 9:39
Have you tried just renaming the folder? – David Brown Nov 25 '11 at 9:56
I have my friend, and all the files in the project file are missing then - they are all marked with read, for not having any refrence. But I found the soultion - see my answer. Thanks for replying – user699215 Nov 25 '11 at 18:45
feedback

3 Answers

I've done it dozens of times:

  • Close Xcode.
  • Rename the source folder.
  • Open the .pbxproj file inside project bundle (context menu "Show Package Contents") with any text editor.
  • Search and replace any ocurrence of the original folder name with the new folder name.
  • Save the file.
  • Open Xcode project.
link|improve this answer
Just tried it - worked for me. Just make a backup first! – tarmes Feb 23 at 9:31
Just remember to do this after you rename the project – Aram Kocharyan Feb 29 at 1:03
Amazing! I had this problem tons of times! thanks a lot – Claus Apr 19 at 9:20
feedback

First of - dont rename an Xcode project!!!

If you have to, the beneath could be it - I never got it to work, ended up creating a new project and started all over copying in the existing files. Xcode is so ahh.... It has so many non productive things, like also try renaming a file from "Name" to "name". Well, well have fun.

I found the answer or how to work around this: Open the pbxproj file by right clicking "Show Package Content" and in there you edit a project.pbxproj file - you have to rename a reference called path and some other stuff - just search for the folder name added "/".

That is it. Hope it helps some one.

link|improve this answer
I renamed a project yesterday and it worked fine. I agree that Xcode is "ahh" though :D – manmal May 16 at 7:00
feedback

Here is how to rename a project effectively in XCode4 (INCLUDING THE FILES FOLDER):

  1. Close all open projects completely in XCode to prevent any issues
  2. Copy the Project in question to a new Folder (IMPORTANT: KEEP A BACKUP OF YOUR OLD PROJECT)
  3. Open the Project
  4. Rename the Project itself in XCode4 (double click on the project name), change the name and follow the steps (yes to everything)
  5. Go to product, manage schemes and rename the scheme (double click on the scheme name)
  6. Close your project (make sure is completely closed otherwise the next steps will not work)
  7. In Finder go to the Project folder and right click on the .xcodeproj file, then select the option "Show Package Contents"
  8. Then right click on the .pbxproj file and open it with TextEdit
  9. Replace all occurrences of the Folder Name where the projects used to live (The old project name for the new project name)
  10. Save the file
  11. Open the Project again and Build it!
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.