user457303
user457303

Reputation: 139

How do I rename a project in Xcode?

i have a finished application written with objective c and I would like to rename the file. how do i do that?

Upvotes: 0

Views: 1160

Answers (2)

rog
rog

Reputation: 5361

Renaming a project has changed in Xcode 4+. (Kris Markel's answer above is for Xcode 3.2.x )

Follow these steps to rename your application in Xcode 4.0 or later:

  1. In Xcode, select your target under "Targets" in the project editor, then choose View > Utilities > Show File Inspector.
  2. Xcode opens the file inspector pane. Enter your application's new name in the Project Name field as shown in Figure 1, then hit the return key on your keyboard.
  3. Xcode displays a project-rename dialog that contains all the items that can be renamed in your project. Leave your application selected in the dialog and deselect all other items as shown in Figure 2, then click Rename to perform the rename operation.

Figure 1 Figure 2

Source: iOS Developer Library Technical Q&A QA1625

Upvotes: 2

Kris Markel
Kris Markel

Reputation: 12112

Recent versions of Xcode have a "Rename..." item in the Project menu.

Upvotes: 4

Related Questions