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


当前回答

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

其他回答

在Xcode 13中,如果你想改变应用程序的显示名称,那么只需到plist并简单地替换CFBundleDisplayName的值:使用它你可以显示应用程序的名称。 在.plist文件中,您需要添加这个。

CFBundleDisplayName 你的应用名称

如果您需要在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 5中,我最喜欢的方法是在建筑设置中更改产品名称。在“建筑设置”中搜索“产品名称”,并更改它。

从Xcode 4.2开始,你可以多使用一个选项。 只需单击左侧导航窗格顶部的.proj文件名,它就可以进行重命名。重命名它,整个项目都会重命名,而不仅仅是目标。

关于捆绑包显示名称的注意事项——这是在应用菜单中更改名称的正确方法,但在看到更改实际生效之前,你可能必须重置iOS模拟器中的内容和设置。