-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpodfile
More file actions
88 lines (36 loc) · 1.08 KB
/
podfile
File metadata and controls
88 lines (36 loc) · 1.08 KB
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
platform :ios, '7.0'
def common_used_pods #<---- 定义 common_used_pods 开始 ---->#
############################
## 技 术 栈 ##
############################
#-------- (6) 请定义此section名字 --------#
#-------- (5) 模块化、组件化 --------#
#-------- (4) 界面层组件 --------#
# 颜色转图片
pod 'UIImage+ImageWithColor'
pod 'Masonry'
#-------- (3) 数据层组件 --------#
#-------- (2) 网络层组件 --------#
# 网络层
pod 'AFNetworking', '~> 3.0'
pod 'Reachability', '~> 3.2'
#-------- (1) 集成功能 --------#
# 热修复
#pod 'JSPatch'
# JS与ObjC交互
pod 'WebViewProxy' #webview网络代理
pod 'WebViewJavascriptBridge', '~> 4.1.5'
pod 'NJKWebViewProgress'
#-------- (0) 集成工具 --------#
# 打印日志
pod 'CocoaLumberjack'
#-----------------------------#
end #<---- 定义 common_used_pods 结束 ---->#
#<---- 配置 target 开始 ---->#
target 'WeChatWebViewController' do
common_used_pods
end
# target 'SomeTargetName' do
# common_used_pods
# end
#<---- 配置 target 结束 ---->#