在我的 Podfile 中,我有:
pod 'ReachabilitySwift', '~> 3.0'
但是当我运行时pod install
,所有框架都设置正确,除了 ReachabilitySwift:
Installing ReachabilitySwift 3 (was 2.4)
[!] Error installing ReachabilitySwift
[!] /usr/bin/git clone https://github.com/ashleymills/Reachability.swift.git /var/folders/cn/1zzgfkjj5xq3hm3g4351087r0000gn/T/d20170922-5156-v06cm4 --template= --single-branch --depth 1 --branch v3
Cloning into '/var/folders/cn/1zzgfkjj5xq3hm3g4351087r0000gn/T/d20170922-5156-v06cm4'...
warning: Could not find remote branch v3 to clone.
fatal: Remote branch v3 not found in upstream origin
通过这个GitHub 链接,我找到了推荐的解决方案:
请添加一个
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
到 podspec 文件。否则每次 pod install 后都会报错。
但是我不知道在哪里可以找到 podspec 文件以及在什么位置插入这个字符串。