小胖說swift01--------如何在Swift開發中使用CocoaPods匯入的第三方庫

來源:互聯網
上載者:User

今天在用Swift寫項目時,需要用CocoaPods引入SDWebImage這個三方庫,於是開始在Vim命令中建立pod file,在建立之前需要cd到當前項目的目錄中,

Podfile建立步驟如下:

1、建立Podfile:touch Podfile

2、編輯Podfile檔案:vim Podfile

   按 i 進入編輯狀態,編輯完成後按Esc退出編輯狀態,然後輸入:wq 返回,

   Podfile檔案的內容如下

platform :ios, '7.0'use_frameworks!target 'Bantang' dopod 'SDWebImage'end
需要注意的一點是:swift和OC中有一點不同,在swift中 配置Podfile檔案時要加上 use_framework! ,作用是把三方庫打包成靜態庫,

在swift中調用三方庫:

1、選中target -> General中的Linked Frameworks and Libraries ,點擊+添加SDWebImage.framework


2、匯入架構之後,直接在需要用到的swift類中 import SDWebImage,
3、然後就可以使用這個三方庫了


相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.