前几天我用一个愚蠢的开发代码开始了一个iPhone项目,现在我想改变这个项目的名称,因为它快要完成了。我该怎么做呢?


当前回答

选择项目导航器→选择目标→标识→显示名称→名称。

其他回答

在目标→构建设置→产品名称字段中,您可以在这里编辑该字段。

如果您需要在iPhone主屏幕上更改应用程序的名称,则需要在Target配置中进行,而不是在项目配置中进行。

Expand the Targets group in Xcode, and then single-click the item under that. It should share the name of your project, which is also the default name of the application that gets generated. Press Command + I to bring up the Info window, and then navigate to the Build tag. Set the Configuration drop-down to read All Configurations. Look for a setting called Product Name under the Packaging heading. Change that value to the name you want for your compiled applications and, in the immortal words of Bugs Bunny: Voilà! Do a clean and a build. Your application will take on the new name.

在Xcode 3.2中,只需要在Groups & Files面板中选择Project条目,然后选择菜单项Project→Rename…

这是我在Xcode 4中改变它的方式:

单击目标文件(应用程序的第一个主文件)。 进入构建设置。 向下滚动,你会发现一个名为“包装”的栏。 在“包装”下,您将看到“产品名称”,您可以更改项目名称。

下面的链接适用于Xcode 6,特别是当你在尝试重命名项目后出现错误时。基本上,你只需要为你的应用构建一个新方案。

https://stackoverflow.com/a/27572164/4114835