前几天我用一个愚蠢的开发代码开始了一个iPhone项目,现在我想改变这个项目的名称,因为它快要完成了。我该怎么做呢?
当前回答
如果您需要在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.
其他回答
我在重命名我的iOS项目后使用这个脚本。它有助于更改目录名称并使名称保持同步。
http://github.com/ytbryan/rename
注意:您需要手动更改方案的名称。
在Xcode 8中很容易改变。在Project Target→General Identity部分的“Display name”字段中输入应用程序名称。
如果你只想改变显示名称,那么你可以直接在应用程序的属性文件(plist)中更改它。
您可以使用以下键添加一个新行
下面是一个例子:
当你使用这个应用程序名称时,你已经给了这个键,它将被显示。
所以你可以简单地做。
下面的链接适用于Xcode 6,特别是当你在尝试重命名项目后出现错误时。基本上,你只需要为你的应用构建一个新方案。
https://stackoverflow.com/a/27572164/4114835
在Xcode 4中点击项目名称开始重命名。
推荐文章
- 更改UITextField和UITextView光标/插入符颜色
- 'Project Name'是通过优化编译的——步进可能会表现得很奇怪;变量可能不可用
- 如何设置回退按钮文本在Swift
- 模拟器慢动作动画现在打开了吗?
- 如何为TableView创建NSIndexPath
- 滑动删除和“更多”按钮(就像iOS 7的邮件应用程序)
- 使UINavigationBar透明
- 如何改变推和弹出动画在一个基于导航的应用程序
- 删除/重置核心数据中的所有条目?
- Swift to Objective-C头未在Xcode 6中创建
- setNeedsLayout vs. setNeedsUpdateConstraints和layoutIfNeeded vs. updateConstraintsIfNeeded
- 不区分大小写的比较
- 我怎么能得到一个uiimage的高度和宽度?
- 我如何模仿地图应用程序的底部表格?
- 改变导航栏后退按钮的颜色