Duplicating an Xcode 4 Project

ios, iphone, xcode

Solution

Seconding @zoul's comment, this can be accomplished in Xcode 4.5 with four steps.

- In Finder, duplicate the project folder. Do not update the `.xcodeproj` file name.

- In Xcode, rename the project. Accept the proposed changes.

- Still in Xcode, rename the scheme in "Manage Schemes".

- In `Info.plist`, rename your Bundle identifier.

Problem

Basically I want to make an independent copy of my Xcode project and all of my files. How can I do this? I'm researching graphing frameworks and I want to use the same UI for each.

Original source

Related problems