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


当前回答

在Xcode 5中,我最喜欢的方法是在建筑设置中更改产品名称。在“建筑设置”中搜索“产品名称”,并更改它。

其他回答

如果您需要在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 4中改变它的方式:

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

用哈维尔的方法重命名我的应用程序非常有效。最后我还想补充一点。

在清理和重建后,我仍然得到一个Mach-O链接器错误。为了解决这个问题;选择你的项目(在项目导航中)。在Targets下,选择yourProjectTests(测试目标)→在General选项卡下,将主机应用程序的值更新为新重命名的项目。

在Xcode 8中很容易改变。在Project Target→General Identity部分的“Display name”字段中输入应用程序名称。