pod install --verbose --no-repo-update
pod update --verbose --no-repo-update
pod repo remove master
pod repo add master https://gitcafe.com/akuandev/Specs.git
pod repo update
如果想用oschina的镜像也可以把第二条命令 换成 http://git.oschina.net/akuandev/Specs.git
即可
platform :ios, '8.0'
use_frameworks!个别需要用到它,比如reactiveCocoa
target 'MyApp' do
pod 'SwiftyJSON', '~> 2.3'
end
网友评论