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


当前回答

Xcode 7/8吗?它在目标使用的plist中

其他回答

如果您需要在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 4或更高版本中,仅更改项目名称(将与项目图标一起显示):

在Groups & Files面板中点击你的项目文件图标,从右边面板中选择project(在目标上面)。看看最右边的窗格(只有启用了“隐藏或显示实用程序”,它才可见)。查找项目名称。将其编辑为您想要赋予项目的新名称。

从模拟器/设备中删除应用程序,清理并运行。变化应该反映。

就是这样。

使用目标→构建设置→产品名称。

Xcode 7/8吗?它在目标使用的plist中