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


当前回答

在info中更改bundle显示名称。plist文件。就这么简单。

更改“bundle display name”(而不是“bundle name”)是在应用程序名称中包含“+”这样的字符的唯一方法。项目名称中包含特殊字符会导致上传到App Store时出错!

其他回答

在新版本的Xcode (Xcode 5也是)中,要更改项目名称,请遵循以下简单(尽可能详细)的步骤:

注意:在这个例子中,我将把一个假设的“样本”名称改为“测试”名称。

Click twice slowly on the project root in the project navigator and then it becomes editable. Rename the project. After pressing Enter the assistant will suggest you to automatically change all project-name-related entries and will allow you to de-select some of them, if you want. Press 'RENAME' and Xcode will do the rest. In the meanwhile Xcode may ask you about the option of making a snapshot of the project (it is very recommendable to do so). In addition to renaming the project, you may want to rename the scheme so that it matches your new project name. Repeat similar steps like 1 and 2, and press OK. That's it.

另一个场景…

前面的解释与更改项目名称有关,但您可能只需要更改主屏幕应用程序图标下方的显示名称。以下是步骤:

在“支持文件”组中找到信息。Plist(或相关)文件 找到“Bundle display name”键并将值更改为新名称。 从模拟器或任何其他测试设备中删除“旧”应用程序。 再次清理并重新构建应用程序。 就是这样。现在你将在主屏幕上看到新的应用程序名称。

在info中更改bundle显示名称。plist文件。就这么简单。

更改“bundle display name”(而不是“bundle name”)是在应用程序名称中包含“+”这样的字符的唯一方法。项目名称中包含特殊字符会导致上传到App Store时出错!

我在重命名我的iOS项目后使用这个脚本。它有助于更改目录名称并使名称保持同步。

http://github.com/ytbryan/rename

注意:您需要手动更改方案的名称。

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

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

我看到了很多在主屏幕上更改应用名称的方法,我认为没有必要编辑你的.plist文件或更改目标的构建设置。

在Xcode 7.2中,默认情况下你的plist文件中甚至没有“bundle display name”。

默认情况下,你的'产品名称'在'构建设置'标签的目标是等于$(TARGET_NAME)。恕我直言,这很方便,我并不想改变。

所以你可以像hallski在他的评论中所说的那样简单地改变你的Target名称。我为它画了一张图: