有没有办法在不使用XCode的情况下从XCode项目中删除文件或将文件添加到XCode项目?也就是说,是否有任何终端命令或程序可以做到这一点?我知道我可以cp
mv
和rm
添加/删除文件,但它们不会反映在实际的项目文件中。
谢谢!
答案 0 :(得分:2)
有一个名为xcodeproj的Ruby Gem允许在命令行操作XCodeProject。
查看Using the Xcodeproj Ruby Gem,其中提供了向项目添加文件的示例。
# Open the existing Xcode project
project_file = product_name + '.xcodeproj'
project = Xcodeproj::Project.new(project_file)
# Add a file to the project in the main group
file_name = 'Message.m'
group_name = product_name
file = project.new_file(file_name, group_name)
# Add the file to the main target
main_target = project.targets.first
main_target.add_file_references([file])
# Save the project file
project.save_as(project_file)
答案 1 :(得分:0)
使用this
复制后尝试构建不知道它是否有效,但值得一试:)