gpt4 book ai didi

ios - 有没有可以修改Podfile的命令行工具?

转载 作者:行者123 更新时间:2023-11-28 19:25:44 29 4
gpt4 key购买 nike

我想使用 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/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com