# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'iOS_Swift' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# 消除警告
inhibit_all_warnings!
# 網(wǎng)絡(luò)請(qǐng)求
pod 'ASIHTTPRequest', '~> 1.8.2'
pod 'AFNetworking', '~> 4.0.1'
pod 'Alamofire', '~> 5.6.1'
# 約束布局
pod 'Masonry', '~> 1.1.0'
pod 'SnapKit', '~> 5.6.0'
# 圖片下載
pod 'SDWebImage', '~> 5.12.5'
# Kingfisher默認(rèn)不支持WebP格式的圖片,需要額外安裝KingfisherWebP
pod 'KingfisherWebP', '~> 1.4.0'
# 轉(zhuǎn)換速度快千所、使用簡單方便的字典轉(zhuǎn)模型框架
pod 'MJExtension', '~> 3.4.1'
# 處理JSON數(shù)據(jù)(解析數(shù)據(jù)工窍、生成數(shù)據(jù))
pod 'SwiftyJSON', '~> 5.0.1'
# JSON<->Model互轉(zhuǎn)
pod 'KakaJSON', '~> 1.1.2'
# 使用下拉刷新的簡單方法
pod 'MJRefresh', '~> 3.7.5'
# Pods for iOS_Swift
end
在橋接文件中 導(dǎo)入Swift庫
// 導(dǎo)入系統(tǒng)的庫
#import <UIKit/UIKit.h>
// 導(dǎo)入OC庫
#import <MJRefresh.h>
// 在橋接文件中 導(dǎo)入Swift庫
#import <Alamofire/Alamofire-Swift.h>
#import <KakaJSON/KakaJSON-Swift.h>
#import <Kingfisher/Kingfisher-Swift.h>
#import <SwiftyJSON/SwiftyJSON-Swift.h>