谢谢!解决方法 有一个名为 xcodeproj的 Ruby Gem允许在命令行 *** 作XCodeProject.
查看Using the Xcodeproj Ruby Gem,它提供了向项目添加文件的示例.
# Open the existing Xcode projectproject_file = product_name + '.xcodeproj'project = Xcodeproj::Project.new(project_file)# Add a file to the project in the main groupfile_name = 'Message.m'group_name = product_namefile = project.new_file(file_name,group_name)# Add the file to the main targetmain_target = project.targets.firstmain_target.add_file_references([file])# Save the project fileproject.save_as(project_file)总结
以上是内存溢出为你收集整理的ios – XCode项目:如何从终端删除/添加文件(脚本,命令等)全部内容,希望文章能够帮你解决ios – XCode项目:如何从终端删除/添加文件(脚本,命令等)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)