-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
31 lines (28 loc) · 1001 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
platform :ios, ’10.0’
use_frameworks!
target 'Zaful' do
pod 'KeychainAccess' # 钥匙串
pod 'Alamofire' # 网络请求
pod 'Kingfisher' # 图片加载
pod 'SnapKit' # 自动布局封装
pod 'XLPagerTabStrip' #pod 'PageMenu' # tab菜单 PagingMenuController / pod 'SwipeMenuViewController'
pod 'SQLite.swift' # 数据库操作
pod 'Hero' # VC跳转动画
pod 'ESPullToRefresh' # 下拉刷新
# pod 'ImageViewer' # 图片浏览
pod 'SKPhotoBrowser' # 图片浏览,带描述
pod 'SwiftyJSON' # json解析
# pod 'DKImagePickerController'
pod 'ESTabBarController-swift' # 自定义tabBar
pod 'RxSwift'
pod 'Moya' # 网络请求封装库
pod 'Moya/RxSwift'
pod 'ObjectMapper' # model 解析
# pod 'PromiseKit' # 异步编程
pod 'Firebase/Core'
pod 'ReachabilitySwift' #网络监听
# pod 'JTAppleCalendar'
pod 'AMScrollingNavbar'
# pod 'BeeHive'
pod 'IQKeyboardManagerSwift'
end