CocoaPods使用国内源

① $ cd ~/.cocoapods/repos 
② $ pod repo remove master
③ $ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master

最后进入自己的工程,在自己工程的podFile第一行加上(要替换原来的source语句):

④ source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
⑤ pod install

你可能感兴趣的:(CocoaPods使用国内源)