CocoaPods安裝和使用教程

2021-06-29 05:11:26 字數 1061 閱讀 3936

$ gem sources --remove 

//等有反應之後再敲入以下命令

$ gem sources -a

$ gem sources -l
只有在終端中出現下面文字才表明你上面的命令是成功的:

*** current sources ***

時候,你再次在終端中執行:

$ sudo gem install cocoapods
檢驗是否支援cocoapods
$ pod search afnetworking
在專案的根目錄下建立podfile

$ vim podfile
platform :ios, '7.0'   //也可以platform :ios

pod "afnetworking", "~> 2.0"

ericmatomacbook-pro:cocoapodsdemo ericwang$ pod install

analyzing dependencies

downloading dependencies

installing afnetworking (2.0.2)

generating pods project

integrating client project

[!] from now on use `cocoapodsdemo.xcworkspace`.

以後開啟專案就用 cocoapodsdemo.xcworkspace 開啟,而不是之前的.xcodeproj檔案。

在targets下:設定header search paths路徑:recursive

安裝和使用cocoaPods

一 cocoapods是什麼?在ios開發中,我們一定會經常使用到各種各樣的第三方開源庫,使用這些開源庫的時候,需要引入原始碼 進行設定 引入其他framework,還有版本的更新.這些工作沒有技術含量而且複雜。這個時候,你要是用了cocoapods,只需要將用到的第三方開源庫放到乙個名為podfi...

CocoaPods安裝和使用

cocoapods安裝和使用 1 需要在本地安裝ruby環境 在終端中輸入 sudo geminstall cocoapods 如果被牆則輸入 gemsources remove gemsources a 檢視是否成功 gemsources l 出現以下則成功 current sources 接著輸...

cocoaPods安裝和使用

1.檢查ruby預設源的映象 沒有改過是cocoapods.org gem sources l 2.移除原有的,映象換成 的 sudo gem sources r sudo gem sources a 報錯 error fetching bad response not found 404 原因是 ...