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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
| platform :ios, '10.0'
|
|
| target 'screendisplay' do
|
| inhibit_all_warnings!
|
| # 网络请求
| pod 'AFNetworking'
| pod 'ASIHTTPRequest'
| # 网络监控
| pod 'Reachability'
|
| #字典转模型
| pod 'MJExtension'
| # 下拉刷新
| pod 'MJRefresh'
| # 图片加载
| pod 'SDWebImage'
| #用于适配
| pod 'Masonry'
|
| #友盟统计和分享
| pod 'UMengAnalytics'
| # U-Share SDK UI模块(分享面板,建议添加)
| pod 'UMengUShare/UI'
| pod 'UMengUShare/Social/ReducedWeChat'
| pod 'UMengUShare/Social/QQ'
| pod 'UMengUShare/Social/Sina'
|
| #百度地图SDK
| pod 'BaiduMapKit'
|
| pod 'CYLTabBarController'
|
| # 表情键盘
| pod 'HMEmoticon'
| # 正则匹配点击
| pod 'KILabel'
|
|
| pod 'YYImage'
| pod 'YYText'
| pod 'YYAsyncLayer'
| pod 'YYCategories'
| pod 'YYCache'
| # 通用链接跳转
| #pod 'MagicWindowSDK'
|
| # 数据库 新浪微博用
| pod 'FMDB'
|
| # 蒙版
| pod 'MBProgressHUD'
|
| # 进度
| pod 'M13ProgressSuite'
|
| # 无线轮播
| pod 'SDCycleScrollView'
|
| # 键盘管理
| pod 'IQKeyboardManager'
|
| # 唯一设备标识
| pod 'FCUUID'
|
|
| # 三级联动 时间 地址
| pod 'MOFSPickerManager'
|
|
| # 全局滑动
| pod 'FDFullscreenPopGesture'
|
| # toast
| pod 'Toast'
|
| # 二维码
| pod 'HMQRCodeScanner'
|
| # 照片
| pod 'TZImagePickerController'
|
| # scrollpageView
| pod 'ZJScrollPageView'
|
| # 列表视频
| pod 'ZFPlayer'
| pod 'ZFDownload'
|
| # mark- 好玩的
| # 泡泡uibutton
| pod 'DWBubbleMenuButton'
|
|
| # 动态 collectionView
| #pod 'LxGridView'
| # 指纹识别
| #pod 'TDTouchID'
| # h5交互
| #pod 'WebViewJavascriptBridge'
| # YYKit
| #pod 'YYKit'
| # 脸部识别
| #pod 'iflyMSC'
| # 环信连天包含实时语音版本
| # pod 'Hyphenate'
| # pod 'EaseUI', :git => 'https://github.com/easemob/easeui-ios-hyphenate-cocoapods.git'
|
| end
|
|