2015年6月28日 星期日

iOS筆記:CocoaPods

 使用第三方套件時通常都會從GitHub上下載下來使用,但是下載後就會跟GitHub脫離版本控制.如果要更新的話就必須透過手動的方式升級.這時候就可以利用CocoaPods來管理這些第三方套件.

安裝步驟:

$ sudo gem install cocoapods
$ pod update

搜尋:

$ pod search AFNetworking

加入到專案:

1. 在Terminal中,移動到自己專案的目錄資料夾底下. 輸入vi Podfile 進入vim並輸入以下內容.
1. platform : ios, '7.0'
2. pod 'AFNetwoking'
2. 回Terminal執行$pod install ,安裝完成後會在資料夾中出現"pods"的資料夾.



3. 更新Library
$ pod outdated //檢查library是否過期
$ pod update
之後有更新Podfile, 更新完後也可以直接執行pod update更新.


參考網址:
https://cocoapods.org/
http://www.slideshare.net/happymanx/cocoa-pods-42907794
http://blog.changyy.org/2014/07/ios-cocoapods.html
http://4tyone.blogspot.tw/2013/09/cocoapods_4.html
https://cg2010studio.wordpress.com/2014/08/15/ios-%E4%BD%BF%E7%94%A8-cocoapods-%E7%AE%A1%E7%90%86%E7%AC%AC%E4%B8%89%E6%96%B9%E5%A5%97%E4%BB%B6/


沒有留言:

張貼留言