1

使用 Xcode 4.5.2,我想创建名为“My App”的项目(使用 File->New->Project)。如果您不将其添加到现有项目中,则会创建以下目录,假设您将目录“ios”指定给 xcode:

ios/My App/My App/
ios/My App/My App.xcodeproj/

创建项目时,不允许为上述目录指定名称。我想要这个目录结构:

ios/MyApp/
ios/MyApp.xcodeproj/

即在名称和直接在“ios”下创建的目录中没有空格。产品名称仍应为“我的应用程序”,并带有空格。你会怎么做呢?谢谢你的帮助。

4

2 回答 2

2

产品名称您可以如何更改:

1) 打开 XCode 项目并按 cmd + 1

2)在左侧面板中选择您的项目

3)在中间面板选择你的目标

4) 点击“构建设置”

5) 查找“产品名称”

在这里您可以写下您的产品名称。产品名称不取决于您的目录名称

于 2013-02-04T06:39:59.277 回答
0

经过一些实验,这里是第二部分的步骤:

- Show Navigator pane
- In Project Navigator, select project 'MyApp'
- Show Utilities pane
- Select File Inspector in Utilities pane
- Under Identity, click on the right arrow next to the Full Path of the project directory
- In the Finder that pops up, rename the parent MyApp to xyz. You'll see a popup that promts to either 'Close' or 'Re-save'. Select Close.
- The xcode window disappears.
- In the Finder, move MyApp and MyApp.xcodeproj one level above from where they are - i.e. to be at the same level as xyz.
- Delete xyz
- Double-click on MyApp.xcodeproj to open it in xcode.
- It should now work
于 2013-02-05T19:20:19.730 回答