標籤:
我們都知道第三方庫,一般使用cocoapods管理,cocoapods在我們IOS開發中有著很大的作用。
好了,現在看下它的安裝步驟: 1.開啟終端,輸入
sudo gem install cocoapods
結果:
WARNING: Improper use of the sudo command could lead to data loss or the deletion of important system files. Please double-check your typing when using sudo. Type "man sudo" for more information. To proceed, enter your password, or type Ctrl-C to abort. Password: (輸入原生密碼)
2.輸入密碼後,按斷行符號建,等待。。。
結果:
ERROR: Could not find a valid gem ‘cocoapods‘ (>= 0), here is why: Unable to download data from https://rubygems.org/ - Errno::ETIMEDOUT: Operation timed out - connect(2) (https://rubygems.org/latest_specs.4.8.gz) ERROR: Possible alternatives: cocoapods
3.輸入
gem sources --remove https//rubygems.org/
按斷行符號建 結果:
source https//rubygems.org/ not present in cache
4.輸入
gem sources -a http://ruby.taobao.org/
結果:
http://ruby.taobao.org/ added to sources
5.輸入(刪除一些不必要的)
gem sources --remove https://rubygems.org/
結果:
https://rubygems.org/ removed from sources
6.輸入
gem sources -l
結果:
*** CURRENT SOURCES *** http://ruby.taobao.org/
7.輸入
pod setup
結果:
-bash: pod: command not found
8.重新執行:
sudo gem install cocoapods
結果
Password: (輸入原生密碼) 結果; 是一串資料更新。。。(等待)
9.輸入
pod setup
結果
Setting up CocoaPods master repo Setup completed
10.(搜尋,不區分大小寫,寫得越詳細也好,找到路徑越精確) 輸入
pod search afnetwork
結果: 一串關於(afnetwork)的東西(搜到的結果)
11.到了這一步,我們需要把建好自己的工程,然後在終端輸入 cd(記得cd後面要空格)把工程檔案拖到這來。按斷行符號建
12.輸入
vi Podfile
按‘i’進入編輯狀態,下面是一些你要編輯的內容:(也就是你的要更新那些第三方庫)
1 platform:ios 2 pod ‘Reachability‘,‘~>3.1.0‘ 3 4 platform:ios,‘6.0‘ 5 pod ‘AFNetworking‘,‘~> 2.3.1‘
編輯好之後,按‘esc’,然後按‘shift+:’,鍵入 wq(儲存退出)
13.更新,輸入
pod update
14.安裝,輸入
pod install
完成上面步驟後(工程會多一些檔案),到工程檔案開啟.xcworkspace的檔案,就可以了,需要用到什麼,就添加標頭檔就OK了。
iOS 之 cocoapods安裝與使用