在 iOS 项目中,我更改了目标名称。但是对于构建,在左上角(在停止按钮旁边),它仍然只显示旧的目标名称......我应该改变什么以便旧的项目名称将从 XCode 中完全消失?
问问题
33647 次
5 回答
34
只需单击停止按钮旁边的目标名称 > 管理方案 > 选择并更改名称
于 2013-03-01T07:28:41.527 回答
14
如果要更改项目名称、目标名称、-Info.plist 名称和 -Prefix.pch 名称,
- Select Project in Xcode (.xcodeproj file)
- Selecte file inspector
- In identity section change project name which u want to update & press enter
- After scanning whole project it will ask to change the file names i.e target, plist & pch file
- Select check boxes as per your need
于 2013-05-15T13:04:27.920 回答
7
目标名称(TARGET_NAME)
要更改 a Target name(TARGET_NAME)
,您可以:
- 重命名过
target
孔Project Settings
(双击或按回车键)
同样在更改目标名称后,您可以:
- 重命名
schema
通过Manage Schemas...
-> 选择 -> 按回车键
Group
通过重命名根Navigator
。在这种情况下,您应该解决可能由过时路径引起的错误。例如:Info.plist
(INFOPLIST_FILE) 或Build input file cannot be found: '<some_path>/Info.plist'
Bridging Header
(SWIFT_OBJC_BRIDGING_HEADER) 或error opening input file '<some_path>/<module_name>-Bridging-Header.h' (No such file or directory)
- 将伞头从私有范围移动到公共范围或
Umbrella header '<name>.h' not found
于 2019-08-04T16:48:12.280 回答
6
要使目标名称的更改生效,您可以转到管理方案,然后删除所有旧目标。然后点击“立即自动创建方案”
于 2013-03-01T07:28:17.500 回答