一、查找支持 CocoaPods 的开源库
pod search Pop //search 后面为开源库名
二、CocoaPods pod install/pod update更新慢的问题
最近使用CocoaPods来添加第三方类库,无论是执行pod install还是pod update都卡在了Analyzing dependencies不动,原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。加参数的命令如下:
pod install --verbose --no-repo-update
三、在安装第三方开源库时遇到版本错误
The platform of the target `Pods` (iOS 4.3) is not compatible with `AFNetworking (2.0.3)` which has a minimum requirement of OS X 10.8 - iOS 6.0
可以修改Podfile为:
platform :ios, ‘6.0‘
时间: 2024-10-10 00:00:19