前几天我用一个愚蠢的开发代码开始了一个iPhone项目,现在我想改变这个项目的名称,因为它快要完成了。我该怎么做呢?
当前回答
您可以在不更改项目名称(特别是目录)的情况下修改产品名称。
构建设置>搜索关键字“产品名称”>更新值
其他回答
在Xcode 8中很容易改变。在Project Target→General Identity部分的“Display name”字段中输入应用程序名称。
另外:你的目标名称可能与你的应用程序名称相同-注意,改变目标名称不会改变应用程序名称-只有下面描述的目标属性的变化-才会改变应用程序名称。
如果你只想改变显示名称,那么你可以直接在应用程序的属性文件(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 4中,在目标的“Build Settings”标签下搜索“Product Name”。
推荐文章
- UICollectionView Self Sizing Cells with Auto Layout
- iOS 7导航栏文本和箭头颜色
- 如何在iOS上进行base64编码?
- 是否有可能更新一个本地化的故事板的字符串?
- 以编程方式获取Bundle Identifier
- 为iPad和iPhone设计输入按钮
- 如何在我的iPhone应用程序中使用NSError ?
- 我的预发行应用已经在iTunes Connect中“处理”了一周多,这是怎么回事?
- Xcode iOS项目只显示“我的Mac 64位”,但不显示模拟器或设备
- Objective-C中的自动引用计数不能防止或减少什么样的泄漏?
- 在Xcode 9中如何从打开的多个模拟器中退出或关闭单个模拟器?
- 如何使用Swift播放声音?
- UINavigationBar自定义返回按钮没有标题
- 如何精确地以毫秒为单位记录方法的执行时间?
- 在整个UIWindow中获取UIView的位置