forked from jzxyouok/TodayNews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
19 lines (17 loc) · 1.4 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target "TodayNews" do
pod 'SnapKit', '~> 3.2.0' # 布局框架 https://github.com/SnapKit/SnapKit,同 Masonry
pod 'Kingfisher', '~> 3.10.4' # 缓存图片 https://github.com/onevcat/Kingfisher,同 SDWebImage
pod 'Alamofire', '~> 4.5.0' # 数据请求 https://github.com/Alamofire/Alamofire,同 AFNetworking
pod 'SwiftyJSON', '~> 3.1.4' # json 解析 https://github.com/SwiftyJSON/SwiftyJSON
pod 'IBAnimatable' # 设计原型,自定义 UI,交互,导航,转场和动画 https://github.com/IBAnimatable/IBAnimatable
pod 'RxSwift', '~> 3.6.1' # 响应式编程框架 https://github.com/ReactiveX/RxSwift
pod 'RxCocoa', '~> 3.6.1' # 响应式编程框架 https://github.com/ReactiveX/RxSwift
pod 'SVProgressHUD', '~> 2.1.2' # 提示功能 https://github.com/SVProgressHUD/SVProgressHUD
pod 'MJRefresh' # 上拉和下拉刷新框架 https://github.com/CoderMJLee/MJRefresh
pod 'BMPlayer' # 视频播放框架 https://github.com/BrikerMan/BMPlayer
pod 'LeanCloud', '~> 10.1.0' # 云存储功能,可作为后台,模拟登录 https://leancloud.cn/docs/sdk_down.html
pod 'SwiftTheme' # 主题替换方案 https://github.com/jiecao-fm/SwiftTheme
end