我想使用Cocoapods向我的项目添加框架。但是我不想手动更改Podfile。我想使用命令行来编辑Podfile,如下所示:

some_command ./Podfile --add AFNetworking --target MyTarget


可能吗?

最佳答案

不幸的是,没有这样的命令。

您可以做的越接近,就是创建一个.sh文件,该文件打开Podfile并在其上写入。例:

podwrite.sh

#!/bin/sh

FILE="Path/To/Podfile"

/bin/cat <<EOM >$FILE
source 'https://github.com/CocoaPods/Specs.git'

target 'MyTarget' do
  use_frameworks!
  pod 'AFNetworking'
end

EOM


通过终端呼叫:

sh podwrite.sh


在podfile上的输出:

source 'https://github.com/CocoaPods/Specs.git'

target 'MyTarget' do
  use_frameworks!
  pod 'AFNetworking'
end

关于ios - 有命令行工具可以修改Podfile吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58424226/

10-14 22:26