podfile中写入以下命令
pod 'JPush', '~> 2.2.0'
然后执行
pod install
或者
pod install --no-repo-update --verbose
半天没有动静。无奈,只能设置pod源了。
找到官方源
https://github.com/jpush/jpush-ios-sdk-pod
然后在oschina创建一个项目,从github引入
然后podfile中再设置源,另外也可以设置tag,刚好最近用的是2.2.0
pod "JPush", :git => 'https://git.oschina.net/songxing10000/jpush-ios-sdk-pod.git', :tag => '2.2.0'
另外,后续官方github更新了, 也能同步更新。