swift pod 相关

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

你可能感兴趣的:(swift pod 相关)