project.pbxproj
77.9 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00983A59DC9AC329089D231C929AC63C /* CNLiveRrfreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 24552D577CD959C4AA3DFCB554BDB9A7 /* CNLiveRrfreshFooter.m */; };
01EEC545FF25CE54CCE4BEC9B7064D4E /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D452368B1E23E34CF464E99127DB84 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
036EEBC27F9F9657F7493AE5D0854619 /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = AD80BC1238C1F025946C78EA689F9FD6 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
08B53CFE1016B51209D9EDF8DFA4FC65 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B572762D25AE884A6E6025CD584CA279 /* UIScrollView+MJExtension.m */; };
091593D5ADC2D430C27CFAD7F8F29EEC /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = D8958DD64D4F8B06313515F077270881 /* MJRefreshConst.m */; };
0A8C5C35ADB95BABEC97F96FE47EDE5B /* CNLiveRefreshFooter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0305B9482660B044E7F780A912EF27FE /* CNLiveRefreshFooter-dummy.m */; };
0B5CF04D03873439E98F1CF8CDE587AC /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0799BB500F75019954F20434A4457B /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; };
0E36E8B51184F67033DDE3DF4D5EB3E2 /* CNLiveRefreshFooter.bundle in Resources */ = {isa = PBXBuildFile; fileRef = F947CBD2DBFEBE5620C0E0A531BF7EA2 /* CNLiveRefreshFooter.bundle */; };
19BE7BE3BD9A74C25C6F3568C5A0890E /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 2970467A63AAFA0B9F669E070084CED3 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
29D08C16D0B1C6BD4D4F0730DC5B2FBD /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D08C87668D5079F8C4B61B3D95436F64 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
2A6C70D2A845BB74357CBF310B1B0462 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 853528392C89701D61153E0753FCEE98 /* UIKit.framework */; };
2B3FAE913033A01558C6A815E81D63F0 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7796E0B84D08F3954CB2285480571B /* MJRefreshStateHeader.m */; };
3E2594CBBF423F4A063481ED2F3944C2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
438D496BC430861779C2E42A608B9172 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 359A4DE4AFFF1344A5481B9EE94ABAC4 /* UIScrollView+MJRefresh.m */; };
460487B64992AFDAA91C219D09DA9917 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 772828D7C1B5EC016F2A391EE2153D58 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
468D84CD2552376CA0201C9D79D3E537 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CCB235447F3E18360C0DAB5E88F117 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
48E227D96D542C3509080C6245C5816B /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF1CC5B1CE4B106461CE38F0B1BAAC9 /* UIView+MJExtension.m */; };
4920B097AA6B4188E9477D26F87401DD /* Pods-CNLiveRefreshFooter_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F808BE157FB5655EAA46858FD6510C53 /* Pods-CNLiveRefreshFooter_Tests-dummy.m */; };
4AA475AA574104E6652E675733422473 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 399AAF1C3C81270C477811E90BCD5614 /* NSBundle+MJRefresh.m */; };
4F872C99F5884DBED802184212FC979D /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF9F7454D6F6BFD295023CF64ADB47E /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
641F3DED143FC2FA8AB5D90FAF86018C /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E087BFF5A4C96024394F46FAB373F0 /* MJRefreshBackGifFooter.m */; };
65277D95D4D640398EE305CA79EBE8F6 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D9FE37D6C27365FC5DB7076DB6A5080B /* MJRefreshComponent.m */; };
662AFCF9B75D4B3D7AA37A3031A69972 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 304CC5D3C2AF74487F5E51E2BD351C87 /* MJRefresh.bundle */; };
666D7FD0EDAC511968DE974A820D260F /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 22423C0D9752CE12BC99436DC3E8D200 /* MJRefreshBackStateFooter.m */; };
7584CAD3B28310FD541528A2C31DF3F6 /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7D6998A720A4F72C5E60295FBAC081 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
7774DC14194F2E07AFC1C630FB89FB6F /* CNLiveRefreshFooter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E4970329CBDABC9DBDFF42855461A8 /* CNLiveRefreshFooter-umbrella.h */; };
7D7EDD288250C0B052A2435E03FB5520 /* Pods-CNLiveRefreshFooter_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEDF3B5E8D58DFADD394F240912E8D2 /* Pods-CNLiveRefreshFooter_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7F8D862F974506128FA8865D9C22434F /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E7FFE3499454CF2099186410BBF06F /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
83E3A762FF86283B514CD9AC3DDF0788 /* MJRefresh.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 17CCA8DD82EF1C1B58D82DE0271EB93F /* MJRefresh.framework */; };
8647AA2163D02AE912C56218352ECF63 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD495E243B865555CCA84971329BB72 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
8A6C562B653E487F46029726CC02BD29 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A65AF0DDBD5843EF6BE10063EC1DE255 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
8DF6D2D9C9D2D76C3E4A5B75CCEB25B5 /* Pods-CNLiveRefreshFooter_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 132ECAFF25A0A31AB46588C93DF2FBAE /* Pods-CNLiveRefreshFooter_Example-dummy.m */; };
910AA0E2004342F1E17A360E390BCF5E /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 31FF1A0FB915D51EBFBE9B0C0D45453B /* MJRefreshBackNormalFooter.m */; };
95F372C980C43B78630496BF82057CA7 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFB5C2A3FCF292E4C8F9355FD0F053 /* MJRefreshGifHeader.m */; };
997A48F3EC24E144F1F2A3A57CA1DA7A /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C7F9AE22051BDBE67493DD290EC5FD9 /* MJRefreshNormalHeader.m */; };
99A39BC606508D879A876669A35FBB42 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DBD653F2D083BF866FD821BDED8FE0 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9B0EC30E3AD845838CEBB99817E05B64 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF3ED4117E8669D0A80A95FA78F1B70 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
A2472F19A8616BE3A7BB583F6B66EE70 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F1604E7B9DB88EF0843279A3CF2928F5 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
A34E4B45BC9F66E2ACFAD301558D4E99 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F11B6AEB5189027B0A6C6FDFBDD7DEE2 /* Assets.xcassets */; };
A396BE4EFE4F609AC4872898D8028D16 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
A4B19881D9B1C4057153964434F67F11 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D6CA0A599AA99D8D4849BE6F09120B4 /* MJRefreshAutoFooter.m */; };
A953A3721D918FE61E22B868B6084FBE /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C9FCFA9C7618D0EF63681404B1649D15 /* MJRefreshBackFooter.m */; };
AF08E4E5075CAD66BEC7153916B2CA09 /* CNLiveRrfreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB5B175A94F20FE06A9F374C748A124 /* CNLiveRrfreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF29D974E626979A92332BF6D17FD130 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
AFD980E96D4AA316A88310F01148B282 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C462EB7C5A1BFAAAA88A2A69302D6D0D /* MJRefreshAutoGifFooter.m */; };
C25251C03BD1EE1D075AD3F7578E43B2 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D3494A5480373FC3C9BDB523B7E08DB9 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; };
C354F8E6602B4A56B8719408B3AD4878 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D156FE66233F9837692DC3CE7C7C5BE2 /* MJRefresh-dummy.m */; };
D6AD8D2CBDEC68124062B2D031E13787 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
D9684AA8B03AB32701210E711B8DDFD3 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E6643DEB2913C3EFD0B2310908C6B17D /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
D9996218BD5D2F4593B72CF076BD4398 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E6152B094EC2308994892CDDA977AECA /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
DA52AB1B581B47254CDF98FD3C795074 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACC47ED652C3A45F4AFC7ED038A9741 /* MJRefreshAutoStateFooter.m */; };
DC6A3DFB0FAF77237B36E1EE9DF4B4FC /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 95959F04C94DDA65B9FFB6C650CFFA32 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
E61CD1E9ABE4359E28C8C64D6C43D4FB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 25E1B990CE4C4CD728A278B17E09A203 /* MJRefreshFooter.m */; };
EC1D76DA27ABDBF3F6364DBD2E235307 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D88BEDD1B5B89A24603DEEDA27376E2 /* MJRefreshHeader.m */; };
ED11D9F54FA31C3D6A4C19D52D9F9D8E /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A8FF7AF8A14C7B50C338359C13B34F2 /* MJRefreshAutoNormalFooter.m */; };
F701A51CD65A8A179D6FE1A9E8263C71 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F9717796B8BB5A0C18C41CD9A84856 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
FE215EDA9BEEE84C101B2785E8E21704 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D848AF815E0097FBB84EE1D0DC9525 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
FF76F6D337B9427A3311690D4398F445 /* Pods-CNLiveRefreshFooter_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EA464BEEC655FFFBCDE50E037642C9F0 /* Pods-CNLiveRefreshFooter_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
01194BB02A1AD512ADCE102C46EAC771 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6BE55A9780BE8C54418AC68CC8C504FA;
remoteInfo = "Pods-CNLiveRefreshFooter_Example";
};
80A70501ACEA096DC1EEEB5C04BEE383 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = D91815A523706B3FD04AEC51AE7D38B5;
remoteInfo = MJRefresh;
};
B5A4E1D74185AFA28F643E05E3E94442 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = D91815A523706B3FD04AEC51AE7D38B5;
remoteInfo = MJRefresh;
};
E40BB89F18785CF85E96BE2A870586E6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = D91815A523706B3FD04AEC51AE7D38B5;
remoteInfo = MJRefresh;
};
E708EE9818101FEEFC34E4E67ED488B0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 369D809BEF3AA025DED90434D093B38A;
remoteInfo = CNLiveRefreshFooter;
};
E94244D5F34EE0A3BCF77C1A9C034054 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0F9E487FA6DD9E9AA3A0B0FB5ED6E79D;
remoteInfo = "CNLiveRefreshFooter-CNLiveRefreshFooter";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
01D848AF815E0097FBB84EE1D0DC9525 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = "<group>"; };
0305B9482660B044E7F780A912EF27FE /* CNLiveRefreshFooter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CNLiveRefreshFooter-dummy.m"; sourceTree = "<group>"; };
0CEFA691BF1A798C5F51B68010CA4E7C /* Pods_CNLiveRefreshFooter_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveRefreshFooter_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0D192BFD16ED0191FE73EBE0B18F4029 /* Pods-CNLiveRefreshFooter_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveRefreshFooter_Tests-resources.sh"; sourceTree = "<group>"; };
132ECAFF25A0A31AB46588C93DF2FBAE /* Pods-CNLiveRefreshFooter_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveRefreshFooter_Example-dummy.m"; sourceTree = "<group>"; };
17CCA8DD82EF1C1B58D82DE0271EB93F /* MJRefresh.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1ACC47ED652C3A45F4AFC7ED038A9741 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
1E256B4182782ABD0C58715D0C469CD8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1F72B722FE36B78AC815E8891F071C37 /* CNLiveRefreshFooter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CNLiveRefreshFooter.modulemap; sourceTree = "<group>"; };
22423C0D9752CE12BC99436DC3E8D200 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
23F9717796B8BB5A0C18C41CD9A84856 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = "<group>"; };
240F5B7917D3F1FDFB931146ECB8CD6F /* MJRefresh.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.xcconfig; sourceTree = "<group>"; };
24552D577CD959C4AA3DFCB554BDB9A7 /* CNLiveRrfreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CNLiveRrfreshFooter.m; path = CNLiveRefreshFooter/Classes/CNLiveRrfreshFooter.m; sourceTree = "<group>"; };
24ACDE650527FF57D6A6EBFDAEDFCC3C /* Pods-CNLiveRefreshFooter_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveRefreshFooter_Example.debug.xcconfig"; sourceTree = "<group>"; };
25E1B990CE4C4CD728A278B17E09A203 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = "<group>"; };
28D452368B1E23E34CF464E99127DB84 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = "<group>"; };
2970467A63AAFA0B9F669E070084CED3 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
2A7D6998A720A4F72C5E60295FBAC081 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
2A8FF7AF8A14C7B50C338359C13B34F2 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
2DB902B26B569D3CD4AEC59BACE1544E /* CNLiveRefreshFooter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveRefreshFooter-prefix.pch"; sourceTree = "<group>"; };
2FF9F7454D6F6BFD295023CF64ADB47E /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
304CC5D3C2AF74487F5E51E2BD351C87 /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = "<group>"; };
31FF1A0FB915D51EBFBE9B0C0D45453B /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
359A4DE4AFFF1344A5481B9EE94ABAC4 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
399AAF1C3C81270C477811E90BCD5614 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = "<group>"; };
3D6CA0A599AA99D8D4849BE6F09120B4 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = "<group>"; };
4DFC060C2F10D1D3BE1714A787BC6069 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
5B5EEA0CDBECE7C7A5C11BC71AEBEBBA /* CNLiveRefreshFooter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = CNLiveRefreshFooter.podspec; sourceTree = "<group>"; };
6D88BEDD1B5B89A24603DEEDA27376E2 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = "<group>"; };
6D97A81069DFF7D833553EA36C9D1F76 /* Pods_CNLiveRefreshFooter_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveRefreshFooter_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
722F132BBAAB7D5D21F5983CB7517AA1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
772828D7C1B5EC016F2A391EE2153D58 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
851BBDA95F8412173115442AA4B9CEC5 /* Pods-CNLiveRefreshFooter_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveRefreshFooter_Tests.debug.xcconfig"; sourceTree = "<group>"; };
853528392C89701D61153E0753FCEE98 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
85DBD653F2D083BF866FD821BDED8FE0 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
86E793DDDE92FA78384D1FDF7C5283C4 /* Pods-CNLiveRefreshFooter_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveRefreshFooter_Example.release.xcconfig"; sourceTree = "<group>"; };
89E7FFE3499454CF2099186410BBF06F /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = "<group>"; };
8DA5FE97760F538AD544561F7353EFEC /* Pods-CNLiveRefreshFooter_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveRefreshFooter_Example-frameworks.sh"; sourceTree = "<group>"; };
8EB47CB3D2C2F5185F7A85B11AAED992 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = "<group>"; };
8EF1CC5B1CE4B106461CE38F0B1BAAC9 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = "<group>"; };
91E087BFF5A4C96024394F46FAB373F0 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
95959F04C94DDA65B9FFB6C650CFFA32 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = "<group>"; };
9BB5B175A94F20FE06A9F374C748A124 /* CNLiveRrfreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CNLiveRrfreshFooter.h; path = CNLiveRefreshFooter/Classes/CNLiveRrfreshFooter.h; sourceTree = "<group>"; };
9BF3ED4117E8669D0A80A95FA78F1B70 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = "<group>"; };
9C7F9AE22051BDBE67493DD290EC5FD9 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = "<group>"; };
9CD495E243B865555CCA84971329BB72 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = "<group>"; };
A65AF0DDBD5843EF6BE10063EC1DE255 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
AA75E5DA39330F7A3A94EC9F661924E2 /* ResourceBundle-CNLiveRefreshFooter-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-CNLiveRefreshFooter-Info.plist"; sourceTree = "<group>"; };
AD80BC1238C1F025946C78EA689F9FD6 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = "<group>"; };
ADEE1689C34A89CE5141E193C219A3F3 /* Pods-CNLiveRefreshFooter_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveRefreshFooter_Tests.modulemap"; sourceTree = "<group>"; };
B572762D25AE884A6E6025CD584CA279 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
B5E4970329CBDABC9DBDFF42855461A8 /* CNLiveRefreshFooter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveRefreshFooter-umbrella.h"; sourceTree = "<group>"; };
B8C029907D0E82BF97DED4BCA9EFEAB9 /* CNLiveRefreshFooter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CNLiveRefreshFooter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BCBFB5C2A3FCF292E4C8F9355FD0F053 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = "<group>"; };
BDA20AC7D28B8E3EF1EA29C2B56E295C /* Pods-CNLiveRefreshFooter_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveRefreshFooter_Example-acknowledgements.plist"; sourceTree = "<group>"; };
BDEDF3B5E8D58DFADD394F240912E8D2 /* Pods-CNLiveRefreshFooter_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveRefreshFooter_Tests-umbrella.h"; sourceTree = "<group>"; };
BE626E4C973C02C2D3AB57F29623342A /* Pods-CNLiveRefreshFooter_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveRefreshFooter_Example-resources.sh"; sourceTree = "<group>"; };
C1BDD45F09B3CEC54F05952784F1D158 /* MJRefresh.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C462EB7C5A1BFAAAA88A2A69302D6D0D /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
C59CA3B35611069886BD9B24209A66D8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C7CC4BFD7F50D0125AF48708AD97F146 /* CNLiveRefreshFooter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CNLiveRefreshFooter.xcconfig; sourceTree = "<group>"; };
C9FCFA9C7618D0EF63681404B1649D15 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = "<group>"; };
CCA883241EA2E0634A957360EF53F8B2 /* Pods-CNLiveRefreshFooter_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveRefreshFooter_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
CD0799BB500F75019954F20434A4457B /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = "<group>"; };
CD7796E0B84D08F3954CB2285480571B /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = "<group>"; };
D08C87668D5079F8C4B61B3D95436F64 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = "<group>"; };
D156FE66233F9837692DC3CE7C7C5BE2 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = "<group>"; };
D3494A5480373FC3C9BDB523B7E08DB9 /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = "<group>"; };
D5CCB235447F3E18360C0DAB5E88F117 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = "<group>"; };
D8958DD64D4F8B06313515F077270881 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = "<group>"; };
D9FE37D6C27365FC5DB7076DB6A5080B /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = "<group>"; };
DB0F97B9DF090D9A97186E37E9E8394B /* Pods-CNLiveRefreshFooter_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveRefreshFooter_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
E2738281A327E43C37E77577465D4195 /* Pods-CNLiveRefreshFooter_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveRefreshFooter_Example.modulemap"; sourceTree = "<group>"; };
E31FE368037DB756AF264BA156F3DBE3 /* Pods-CNLiveRefreshFooter_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveRefreshFooter_Tests.release.xcconfig"; sourceTree = "<group>"; };
E6152B094EC2308994892CDDA977AECA /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
E6643DEB2913C3EFD0B2310908C6B17D /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
E95BDF57AA4A0FD8C8B1B87CA3C495C7 /* Pods-CNLiveRefreshFooter_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveRefreshFooter_Tests-frameworks.sh"; sourceTree = "<group>"; };
EA464BEEC655FFFBCDE50E037642C9F0 /* Pods-CNLiveRefreshFooter_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveRefreshFooter_Example-umbrella.h"; sourceTree = "<group>"; };
EEDE874A8F3F97D00CE3D3446F13F674 /* Pods-CNLiveRefreshFooter_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveRefreshFooter_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
F11B6AEB5189027B0A6C6FDFBDD7DEE2 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = CNLiveRefreshFooter/Assets/Assets.xcassets; sourceTree = "<group>"; };
F1604E7B9DB88EF0843279A3CF2928F5 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = "<group>"; };
F1A111851B3054FEDC84D1FF7557D15A /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = "<group>"; };
F808BE157FB5655EAA46858FD6510C53 /* Pods-CNLiveRefreshFooter_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveRefreshFooter_Tests-dummy.m"; sourceTree = "<group>"; };
F947CBD2DBFEBE5620C0E0A531BF7EA2 /* CNLiveRefreshFooter.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CNLiveRefreshFooter.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
FABAFE7CE42B1D3FCE06EEDC25035895 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
FE8465EE65E9B9BE51DF792BCB470830 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
0E3D542A822F8EA245830D8833AAD699 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A396BE4EFE4F609AC4872898D8028D16 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
79F32458013D0D5F9E7EF183F332C36B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D6AD8D2CBDEC68124062B2D031E13787 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9F3E52A545D376284B993E4A1E5BC062 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3E2594CBBF423F4A063481ED2F3944C2 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A511C42A362EEFE2989E0887CE94C423 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
EC03DA0DC91C6EB5EDDC427912BD46F6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
AF29D974E626979A92332BF6D17FD130 /* Foundation.framework in Frameworks */,
83E3A762FF86283B514CD9AC3DDF0788 /* MJRefresh.framework in Frameworks */,
2A6C70D2A845BB74357CBF310B1B0462 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
00D2128E3D14B6D22A9F731FE06EDA56 /* Pods-CNLiveRefreshFooter_Tests */ = {
isa = PBXGroup;
children = (
FE8465EE65E9B9BE51DF792BCB470830 /* Info.plist */,
ADEE1689C34A89CE5141E193C219A3F3 /* Pods-CNLiveRefreshFooter_Tests.modulemap */,
DB0F97B9DF090D9A97186E37E9E8394B /* Pods-CNLiveRefreshFooter_Tests-acknowledgements.markdown */,
CCA883241EA2E0634A957360EF53F8B2 /* Pods-CNLiveRefreshFooter_Tests-acknowledgements.plist */,
F808BE157FB5655EAA46858FD6510C53 /* Pods-CNLiveRefreshFooter_Tests-dummy.m */,
E95BDF57AA4A0FD8C8B1B87CA3C495C7 /* Pods-CNLiveRefreshFooter_Tests-frameworks.sh */,
0D192BFD16ED0191FE73EBE0B18F4029 /* Pods-CNLiveRefreshFooter_Tests-resources.sh */,
BDEDF3B5E8D58DFADD394F240912E8D2 /* Pods-CNLiveRefreshFooter_Tests-umbrella.h */,
851BBDA95F8412173115442AA4B9CEC5 /* Pods-CNLiveRefreshFooter_Tests.debug.xcconfig */,
E31FE368037DB756AF264BA156F3DBE3 /* Pods-CNLiveRefreshFooter_Tests.release.xcconfig */,
);
name = "Pods-CNLiveRefreshFooter_Tests";
path = "Target Support Files/Pods-CNLiveRefreshFooter_Tests";
sourceTree = "<group>";
};
0CD1F1B3DBB711F2545AF5DF3CD992F1 /* MJRefresh */ = {
isa = PBXGroup;
children = (
23F9717796B8BB5A0C18C41CD9A84856 /* MJRefresh.h */,
89E7FFE3499454CF2099186410BBF06F /* MJRefreshAutoFooter.h */,
3D6CA0A599AA99D8D4849BE6F09120B4 /* MJRefreshAutoFooter.m */,
2FF9F7454D6F6BFD295023CF64ADB47E /* MJRefreshAutoGifFooter.h */,
C462EB7C5A1BFAAAA88A2A69302D6D0D /* MJRefreshAutoGifFooter.m */,
A65AF0DDBD5843EF6BE10063EC1DE255 /* MJRefreshAutoNormalFooter.h */,
2A8FF7AF8A14C7B50C338359C13B34F2 /* MJRefreshAutoNormalFooter.m */,
85DBD653F2D083BF866FD821BDED8FE0 /* MJRefreshAutoStateFooter.h */,
1ACC47ED652C3A45F4AFC7ED038A9741 /* MJRefreshAutoStateFooter.m */,
28D452368B1E23E34CF464E99127DB84 /* MJRefreshBackFooter.h */,
C9FCFA9C7618D0EF63681404B1649D15 /* MJRefreshBackFooter.m */,
E6152B094EC2308994892CDDA977AECA /* MJRefreshBackGifFooter.h */,
91E087BFF5A4C96024394F46FAB373F0 /* MJRefreshBackGifFooter.m */,
772828D7C1B5EC016F2A391EE2153D58 /* MJRefreshBackNormalFooter.h */,
31FF1A0FB915D51EBFBE9B0C0D45453B /* MJRefreshBackNormalFooter.m */,
2A7D6998A720A4F72C5E60295FBAC081 /* MJRefreshBackStateFooter.h */,
22423C0D9752CE12BC99436DC3E8D200 /* MJRefreshBackStateFooter.m */,
CD0799BB500F75019954F20434A4457B /* MJRefreshComponent.h */,
D9FE37D6C27365FC5DB7076DB6A5080B /* MJRefreshComponent.m */,
D3494A5480373FC3C9BDB523B7E08DB9 /* MJRefreshConst.h */,
D8958DD64D4F8B06313515F077270881 /* MJRefreshConst.m */,
01D848AF815E0097FBB84EE1D0DC9525 /* MJRefreshFooter.h */,
25E1B990CE4C4CD728A278B17E09A203 /* MJRefreshFooter.m */,
95959F04C94DDA65B9FFB6C650CFFA32 /* MJRefreshGifHeader.h */,
BCBFB5C2A3FCF292E4C8F9355FD0F053 /* MJRefreshGifHeader.m */,
D5CCB235447F3E18360C0DAB5E88F117 /* MJRefreshHeader.h */,
6D88BEDD1B5B89A24603DEEDA27376E2 /* MJRefreshHeader.m */,
9CD495E243B865555CCA84971329BB72 /* MJRefreshNormalHeader.h */,
9C7F9AE22051BDBE67493DD290EC5FD9 /* MJRefreshNormalHeader.m */,
9BF3ED4117E8669D0A80A95FA78F1B70 /* MJRefreshStateHeader.h */,
CD7796E0B84D08F3954CB2285480571B /* MJRefreshStateHeader.m */,
F1604E7B9DB88EF0843279A3CF2928F5 /* NSBundle+MJRefresh.h */,
399AAF1C3C81270C477811E90BCD5614 /* NSBundle+MJRefresh.m */,
E6643DEB2913C3EFD0B2310908C6B17D /* UIScrollView+MJExtension.h */,
B572762D25AE884A6E6025CD584CA279 /* UIScrollView+MJExtension.m */,
2970467A63AAFA0B9F669E070084CED3 /* UIScrollView+MJRefresh.h */,
359A4DE4AFFF1344A5481B9EE94ABAC4 /* UIScrollView+MJRefresh.m */,
AD80BC1238C1F025946C78EA689F9FD6 /* UIView+MJExtension.h */,
8EF1CC5B1CE4B106461CE38F0B1BAAC9 /* UIView+MJExtension.m */,
6A06433F80093BADBE67BFF332FBA5A5 /* Resources */,
2F7A31F2CC7696BDCA31131421062736 /* Support Files */,
);
path = MJRefresh;
sourceTree = "<group>";
};
1CAC1DA8C380A1C0BD09220832732823 /* Support Files */ = {
isa = PBXGroup;
children = (
1F72B722FE36B78AC815E8891F071C37 /* CNLiveRefreshFooter.modulemap */,
C7CC4BFD7F50D0125AF48708AD97F146 /* CNLiveRefreshFooter.xcconfig */,
0305B9482660B044E7F780A912EF27FE /* CNLiveRefreshFooter-dummy.m */,
2DB902B26B569D3CD4AEC59BACE1544E /* CNLiveRefreshFooter-prefix.pch */,
B5E4970329CBDABC9DBDFF42855461A8 /* CNLiveRefreshFooter-umbrella.h */,
1E256B4182782ABD0C58715D0C469CD8 /* Info.plist */,
AA75E5DA39330F7A3A94EC9F661924E2 /* ResourceBundle-CNLiveRefreshFooter-Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/CNLiveRefreshFooter";
sourceTree = "<group>";
};
2F7A31F2CC7696BDCA31131421062736 /* Support Files */ = {
isa = PBXGroup;
children = (
C59CA3B35611069886BD9B24209A66D8 /* Info.plist */,
F1A111851B3054FEDC84D1FF7557D15A /* MJRefresh.modulemap */,
240F5B7917D3F1FDFB931146ECB8CD6F /* MJRefresh.xcconfig */,
D156FE66233F9837692DC3CE7C7C5BE2 /* MJRefresh-dummy.m */,
8EB47CB3D2C2F5185F7A85B11AAED992 /* MJRefresh-prefix.pch */,
D08C87668D5079F8C4B61B3D95436F64 /* MJRefresh-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/MJRefresh";
sourceTree = "<group>";
};
3964AEC683B0B18DA6747BEC2DC47E83 /* Pod */ = {
isa = PBXGroup;
children = (
5B5EEA0CDBECE7C7A5C11BC71AEBEBBA /* CNLiveRefreshFooter.podspec */,
FABAFE7CE42B1D3FCE06EEDC25035895 /* LICENSE */,
4DFC060C2F10D1D3BE1714A787BC6069 /* README.md */,
);
name = Pod;
sourceTree = "<group>";
};
6A06433F80093BADBE67BFF332FBA5A5 /* Resources */ = {
isa = PBXGroup;
children = (
304CC5D3C2AF74487F5E51E2BD351C87 /* MJRefresh.bundle */,
);
name = Resources;
sourceTree = "<group>";
};
6CF05A888950EAD7905D5CF4BF897791 /* Resources */ = {
isa = PBXGroup;
children = (
F11B6AEB5189027B0A6C6FDFBDD7DEE2 /* Assets.xcassets */,
);
name = Resources;
sourceTree = "<group>";
};
6E384A741B4011BC20EC8753B3452488 /* Products */ = {
isa = PBXGroup;
children = (
F947CBD2DBFEBE5620C0E0A531BF7EA2 /* CNLiveRefreshFooter.bundle */,
B8C029907D0E82BF97DED4BCA9EFEAB9 /* CNLiveRefreshFooter.framework */,
C1BDD45F09B3CEC54F05952784F1D158 /* MJRefresh.framework */,
0CEFA691BF1A798C5F51B68010CA4E7C /* Pods_CNLiveRefreshFooter_Example.framework */,
6D97A81069DFF7D833553EA36C9D1F76 /* Pods_CNLiveRefreshFooter_Tests.framework */,
);
name = Products;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
A408031739D22815D1B10E7DC185787F /* Development Pods */,
F63DF0D4E566BB69A93A3FC7DC0AAD1D /* Frameworks */,
DD0132D41CBFCB2611DA7EABABDA47E4 /* Pods */,
6E384A741B4011BC20EC8753B3452488 /* Products */,
9CA71DAB36504A7423D4639F5DEB7BC3 /* Targets Support Files */,
);
sourceTree = "<group>";
};
8236C00D8CF69F52371E800D82672AF2 /* CNLiveRefreshFooter */ = {
isa = PBXGroup;
children = (
9BB5B175A94F20FE06A9F374C748A124 /* CNLiveRrfreshFooter.h */,
24552D577CD959C4AA3DFCB554BDB9A7 /* CNLiveRrfreshFooter.m */,
3964AEC683B0B18DA6747BEC2DC47E83 /* Pod */,
6CF05A888950EAD7905D5CF4BF897791 /* Resources */,
1CAC1DA8C380A1C0BD09220832732823 /* Support Files */,
);
name = CNLiveRefreshFooter;
path = ../..;
sourceTree = "<group>";
};
9CA71DAB36504A7423D4639F5DEB7BC3 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
B55C49A4D8741CD9DFB11402B646EC70 /* Pods-CNLiveRefreshFooter_Example */,
00D2128E3D14B6D22A9F731FE06EDA56 /* Pods-CNLiveRefreshFooter_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
A408031739D22815D1B10E7DC185787F /* Development Pods */ = {
isa = PBXGroup;
children = (
8236C00D8CF69F52371E800D82672AF2 /* CNLiveRefreshFooter */,
);
name = "Development Pods";
sourceTree = "<group>";
};
B55C49A4D8741CD9DFB11402B646EC70 /* Pods-CNLiveRefreshFooter_Example */ = {
isa = PBXGroup;
children = (
722F132BBAAB7D5D21F5983CB7517AA1 /* Info.plist */,
E2738281A327E43C37E77577465D4195 /* Pods-CNLiveRefreshFooter_Example.modulemap */,
EEDE874A8F3F97D00CE3D3446F13F674 /* Pods-CNLiveRefreshFooter_Example-acknowledgements.markdown */,
BDA20AC7D28B8E3EF1EA29C2B56E295C /* Pods-CNLiveRefreshFooter_Example-acknowledgements.plist */,
132ECAFF25A0A31AB46588C93DF2FBAE /* Pods-CNLiveRefreshFooter_Example-dummy.m */,
8DA5FE97760F538AD544561F7353EFEC /* Pods-CNLiveRefreshFooter_Example-frameworks.sh */,
BE626E4C973C02C2D3AB57F29623342A /* Pods-CNLiveRefreshFooter_Example-resources.sh */,
EA464BEEC655FFFBCDE50E037642C9F0 /* Pods-CNLiveRefreshFooter_Example-umbrella.h */,
24ACDE650527FF57D6A6EBFDAEDFCC3C /* Pods-CNLiveRefreshFooter_Example.debug.xcconfig */,
86E793DDDE92FA78384D1FDF7C5283C4 /* Pods-CNLiveRefreshFooter_Example.release.xcconfig */,
);
name = "Pods-CNLiveRefreshFooter_Example";
path = "Target Support Files/Pods-CNLiveRefreshFooter_Example";
sourceTree = "<group>";
};
D586138D20C0FDDAAA69BED529E0B4AD /* iOS */ = {
isa = PBXGroup;
children = (
5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */,
853528392C89701D61153E0753FCEE98 /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
DD0132D41CBFCB2611DA7EABABDA47E4 /* Pods */ = {
isa = PBXGroup;
children = (
0CD1F1B3DBB711F2545AF5DF3CD992F1 /* MJRefresh */,
);
name = Pods;
sourceTree = "<group>";
};
F63DF0D4E566BB69A93A3FC7DC0AAD1D /* Frameworks */ = {
isa = PBXGroup;
children = (
17CCA8DD82EF1C1B58D82DE0271EB93F /* MJRefresh.framework */,
D586138D20C0FDDAAA69BED529E0B4AD /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
026F060A2632551C3CE862301E32EA08 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
FF76F6D337B9427A3311690D4398F445 /* Pods-CNLiveRefreshFooter_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
1490B41E3A26AFEBDA3AE8CF613DAE52 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
29D08C16D0B1C6BD4D4F0730DC5B2FBD /* MJRefresh-umbrella.h in Headers */,
F701A51CD65A8A179D6FE1A9E8263C71 /* MJRefresh.h in Headers */,
7F8D862F974506128FA8865D9C22434F /* MJRefreshAutoFooter.h in Headers */,
4F872C99F5884DBED802184212FC979D /* MJRefreshAutoGifFooter.h in Headers */,
8A6C562B653E487F46029726CC02BD29 /* MJRefreshAutoNormalFooter.h in Headers */,
99A39BC606508D879A876669A35FBB42 /* MJRefreshAutoStateFooter.h in Headers */,
01EEC545FF25CE54CCE4BEC9B7064D4E /* MJRefreshBackFooter.h in Headers */,
D9996218BD5D2F4593B72CF076BD4398 /* MJRefreshBackGifFooter.h in Headers */,
460487B64992AFDAA91C219D09DA9917 /* MJRefreshBackNormalFooter.h in Headers */,
7584CAD3B28310FD541528A2C31DF3F6 /* MJRefreshBackStateFooter.h in Headers */,
0B5CF04D03873439E98F1CF8CDE587AC /* MJRefreshComponent.h in Headers */,
C25251C03BD1EE1D075AD3F7578E43B2 /* MJRefreshConst.h in Headers */,
FE215EDA9BEEE84C101B2785E8E21704 /* MJRefreshFooter.h in Headers */,
DC6A3DFB0FAF77237B36E1EE9DF4B4FC /* MJRefreshGifHeader.h in Headers */,
468D84CD2552376CA0201C9D79D3E537 /* MJRefreshHeader.h in Headers */,
8647AA2163D02AE912C56218352ECF63 /* MJRefreshNormalHeader.h in Headers */,
9B0EC30E3AD845838CEBB99817E05B64 /* MJRefreshStateHeader.h in Headers */,
A2472F19A8616BE3A7BB583F6B66EE70 /* NSBundle+MJRefresh.h in Headers */,
D9684AA8B03AB32701210E711B8DDFD3 /* UIScrollView+MJExtension.h in Headers */,
19BE7BE3BD9A74C25C6F3568C5A0890E /* UIScrollView+MJRefresh.h in Headers */,
036EEBC27F9F9657F7493AE5D0854619 /* UIView+MJExtension.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6161ABE1177A4B44838948B1AE4E2F1D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
AF08E4E5075CAD66BEC7153916B2CA09 /* CNLiveRrfreshFooter.h in Headers */,
7774DC14194F2E07AFC1C630FB89FB6F /* CNLiveRefreshFooter-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
827AB0BFC554758BC911DCC991676D8F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
7D7EDD288250C0B052A2435E03FB5520 /* Pods-CNLiveRefreshFooter_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
0F9E487FA6DD9E9AA3A0B0FB5ED6E79D /* CNLiveRefreshFooter-CNLiveRefreshFooter */ = {
isa = PBXNativeTarget;
buildConfigurationList = 8CBC1C8E1C3AB9FA0E6015D73FEFC530 /* Build configuration list for PBXNativeTarget "CNLiveRefreshFooter-CNLiveRefreshFooter" */;
buildPhases = (
40AF44D125F308B64B6B10AB056D5631 /* Sources */,
A511C42A362EEFE2989E0887CE94C423 /* Frameworks */,
E2AD781CB90D7A2D298546B3AAB71449 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "CNLiveRefreshFooter-CNLiveRefreshFooter";
productName = "CNLiveRefreshFooter-CNLiveRefreshFooter";
productReference = F947CBD2DBFEBE5620C0E0A531BF7EA2 /* CNLiveRefreshFooter.bundle */;
productType = "com.apple.product-type.bundle";
};
369D809BEF3AA025DED90434D093B38A /* CNLiveRefreshFooter */ = {
isa = PBXNativeTarget;
buildConfigurationList = D97A293FCBE2A6AA6FF6FBFDC114DA36 /* Build configuration list for PBXNativeTarget "CNLiveRefreshFooter" */;
buildPhases = (
6161ABE1177A4B44838948B1AE4E2F1D /* Headers */,
802089C8BDB8D0311494FFEE2455F483 /* Sources */,
EC03DA0DC91C6EB5EDDC427912BD46F6 /* Frameworks */,
20E815A9F3D0FBC91FF602C2439C4C43 /* Resources */,
);
buildRules = (
);
dependencies = (
943DDB1D8BA55636D130155D9BD2244C /* PBXTargetDependency */,
3744D034C0F5D38C551D4D9B07E14B39 /* PBXTargetDependency */,
);
name = CNLiveRefreshFooter;
productName = CNLiveRefreshFooter;
productReference = B8C029907D0E82BF97DED4BCA9EFEAB9 /* CNLiveRefreshFooter.framework */;
productType = "com.apple.product-type.framework";
};
484FC89C64DE7B3C8D3DE6D25F5592DC /* Pods-CNLiveRefreshFooter_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = E23CBE165A1011058D743D5192953233 /* Build configuration list for PBXNativeTarget "Pods-CNLiveRefreshFooter_Tests" */;
buildPhases = (
827AB0BFC554758BC911DCC991676D8F /* Headers */,
2FF48B6B946E06F1D18E8ABE864007CF /* Sources */,
9F3E52A545D376284B993E4A1E5BC062 /* Frameworks */,
388B9C20CEDFFC9EF35122848C4B3AF8 /* Resources */,
);
buildRules = (
);
dependencies = (
E9DFAECA1D4421AF764500670B2DEB0A /* PBXTargetDependency */,
248D8513B3EF4A5F4C5425175E72C27A /* PBXTargetDependency */,
);
name = "Pods-CNLiveRefreshFooter_Tests";
productName = "Pods-CNLiveRefreshFooter_Tests";
productReference = 6D97A81069DFF7D833553EA36C9D1F76 /* Pods_CNLiveRefreshFooter_Tests.framework */;
productType = "com.apple.product-type.framework";
};
6BE55A9780BE8C54418AC68CC8C504FA /* Pods-CNLiveRefreshFooter_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 31FC733F59A86EECAE54C5BD43A2CF0E /* Build configuration list for PBXNativeTarget "Pods-CNLiveRefreshFooter_Example" */;
buildPhases = (
026F060A2632551C3CE862301E32EA08 /* Headers */,
DE19F2DEF749EDE497D5DDCB8F17CC85 /* Sources */,
0E3D542A822F8EA245830D8833AAD699 /* Frameworks */,
77EA349B2EBAE7DA4877565A35F08A2C /* Resources */,
);
buildRules = (
);
dependencies = (
485BB6F110A029123B25F996640F2550 /* PBXTargetDependency */,
2C830BB72900564B584F181A98D5E797 /* PBXTargetDependency */,
);
name = "Pods-CNLiveRefreshFooter_Example";
productName = "Pods-CNLiveRefreshFooter_Example";
productReference = 0CEFA691BF1A798C5F51B68010CA4E7C /* Pods_CNLiveRefreshFooter_Example.framework */;
productType = "com.apple.product-type.framework";
};
D91815A523706B3FD04AEC51AE7D38B5 /* MJRefresh */ = {
isa = PBXNativeTarget;
buildConfigurationList = 889C9D2B9F70A3EEB0D80E2DCC04864D /* Build configuration list for PBXNativeTarget "MJRefresh" */;
buildPhases = (
1490B41E3A26AFEBDA3AE8CF613DAE52 /* Headers */,
F5F88C76F4AB2BEE2461FB2DB8A644A5 /* Sources */,
79F32458013D0D5F9E7EF183F332C36B /* Frameworks */,
62B5F9B979C3A698086ADC338E5FFAFD /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MJRefresh;
productName = MJRefresh;
productReference = C1BDD45F09B3CEC54F05952784F1D158 /* MJRefresh.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0930;
LastUpgradeCheck = 0930;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = 6E384A741B4011BC20EC8753B3452488 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
369D809BEF3AA025DED90434D093B38A /* CNLiveRefreshFooter */,
0F9E487FA6DD9E9AA3A0B0FB5ED6E79D /* CNLiveRefreshFooter-CNLiveRefreshFooter */,
D91815A523706B3FD04AEC51AE7D38B5 /* MJRefresh */,
6BE55A9780BE8C54418AC68CC8C504FA /* Pods-CNLiveRefreshFooter_Example */,
484FC89C64DE7B3C8D3DE6D25F5592DC /* Pods-CNLiveRefreshFooter_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
20E815A9F3D0FBC91FF602C2439C4C43 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0E36E8B51184F67033DDE3DF4D5EB3E2 /* CNLiveRefreshFooter.bundle in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
388B9C20CEDFFC9EF35122848C4B3AF8 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
62B5F9B979C3A698086ADC338E5FFAFD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
662AFCF9B75D4B3D7AA37A3031A69972 /* MJRefresh.bundle in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
77EA349B2EBAE7DA4877565A35F08A2C /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
E2AD781CB90D7A2D298546B3AAB71449 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
A34E4B45BC9F66E2ACFAD301558D4E99 /* Assets.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
2FF48B6B946E06F1D18E8ABE864007CF /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4920B097AA6B4188E9477D26F87401DD /* Pods-CNLiveRefreshFooter_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
40AF44D125F308B64B6B10AB056D5631 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
802089C8BDB8D0311494FFEE2455F483 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0A8C5C35ADB95BABEC97F96FE47EDE5B /* CNLiveRefreshFooter-dummy.m in Sources */,
00983A59DC9AC329089D231C929AC63C /* CNLiveRrfreshFooter.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DE19F2DEF749EDE497D5DDCB8F17CC85 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8DF6D2D9C9D2D76C3E4A5B75CCEB25B5 /* Pods-CNLiveRefreshFooter_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F5F88C76F4AB2BEE2461FB2DB8A644A5 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C354F8E6602B4A56B8719408B3AD4878 /* MJRefresh-dummy.m in Sources */,
A4B19881D9B1C4057153964434F67F11 /* MJRefreshAutoFooter.m in Sources */,
AFD980E96D4AA316A88310F01148B282 /* MJRefreshAutoGifFooter.m in Sources */,
ED11D9F54FA31C3D6A4C19D52D9F9D8E /* MJRefreshAutoNormalFooter.m in Sources */,
DA52AB1B581B47254CDF98FD3C795074 /* MJRefreshAutoStateFooter.m in Sources */,
A953A3721D918FE61E22B868B6084FBE /* MJRefreshBackFooter.m in Sources */,
641F3DED143FC2FA8AB5D90FAF86018C /* MJRefreshBackGifFooter.m in Sources */,
910AA0E2004342F1E17A360E390BCF5E /* MJRefreshBackNormalFooter.m in Sources */,
666D7FD0EDAC511968DE974A820D260F /* MJRefreshBackStateFooter.m in Sources */,
65277D95D4D640398EE305CA79EBE8F6 /* MJRefreshComponent.m in Sources */,
091593D5ADC2D430C27CFAD7F8F29EEC /* MJRefreshConst.m in Sources */,
E61CD1E9ABE4359E28C8C64D6C43D4FB /* MJRefreshFooter.m in Sources */,
95F372C980C43B78630496BF82057CA7 /* MJRefreshGifHeader.m in Sources */,
EC1D76DA27ABDBF3F6364DBD2E235307 /* MJRefreshHeader.m in Sources */,
997A48F3EC24E144F1F2A3A57CA1DA7A /* MJRefreshNormalHeader.m in Sources */,
2B3FAE913033A01558C6A815E81D63F0 /* MJRefreshStateHeader.m in Sources */,
4AA475AA574104E6652E675733422473 /* NSBundle+MJRefresh.m in Sources */,
08B53CFE1016B51209D9EDF8DFA4FC65 /* UIScrollView+MJExtension.m in Sources */,
438D496BC430861779C2E42A608B9172 /* UIScrollView+MJRefresh.m in Sources */,
48E227D96D542C3509080C6245C5816B /* UIView+MJExtension.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
248D8513B3EF4A5F4C5425175E72C27A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Pods-CNLiveRefreshFooter_Example";
target = 6BE55A9780BE8C54418AC68CC8C504FA /* Pods-CNLiveRefreshFooter_Example */;
targetProxy = 01194BB02A1AD512ADCE102C46EAC771 /* PBXContainerItemProxy */;
};
2C830BB72900564B584F181A98D5E797 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = D91815A523706B3FD04AEC51AE7D38B5 /* MJRefresh */;
targetProxy = E40BB89F18785CF85E96BE2A870586E6 /* PBXContainerItemProxy */;
};
3744D034C0F5D38C551D4D9B07E14B39 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = D91815A523706B3FD04AEC51AE7D38B5 /* MJRefresh */;
targetProxy = B5A4E1D74185AFA28F643E05E3E94442 /* PBXContainerItemProxy */;
};
485BB6F110A029123B25F996640F2550 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = CNLiveRefreshFooter;
target = 369D809BEF3AA025DED90434D093B38A /* CNLiveRefreshFooter */;
targetProxy = E708EE9818101FEEFC34E4E67ED488B0 /* PBXContainerItemProxy */;
};
943DDB1D8BA55636D130155D9BD2244C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "CNLiveRefreshFooter-CNLiveRefreshFooter";
target = 0F9E487FA6DD9E9AA3A0B0FB5ED6E79D /* CNLiveRefreshFooter-CNLiveRefreshFooter */;
targetProxy = E94244D5F34EE0A3BCF77C1A9C034054 /* PBXContainerItemProxy */;
};
E9DFAECA1D4421AF764500670B2DEB0A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = D91815A523706B3FD04AEC51AE7D38B5 /* MJRefresh */;
targetProxy = 80A70501ACEA096DC1EEEB5C04BEE383 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
13772838DE2E0CB868EE50661D78449B /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C7CC4BFD7F50D0125AF48708AD97F146 /* CNLiveRefreshFooter.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer";
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CNLiveRefreshFooter";
INFOPLIST_FILE = "Target Support Files/CNLiveRefreshFooter/ResourceBundle-CNLiveRefreshFooter-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
PRODUCT_NAME = CNLiveRefreshFooter;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
236E6FC0E14B3DD7BD90579DA2961EA7 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C7CC4BFD7F50D0125AF48708AD97F146 /* CNLiveRefreshFooter.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/CNLiveRefreshFooter/CNLiveRefreshFooter-prefix.pch";
INFOPLIST_FILE = "Target Support Files/CNLiveRefreshFooter/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/CNLiveRefreshFooter/CNLiveRefreshFooter.modulemap";
PRODUCT_MODULE_NAME = CNLiveRefreshFooter;
PRODUCT_NAME = CNLiveRefreshFooter;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
2F7E7475AFDC0744BD9E216CB46C433C /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 240F5B7917D3F1FDFB931146ECB8CD6F /* MJRefresh.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch";
INFOPLIST_FILE = "Target Support Files/MJRefresh/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap";
PRODUCT_MODULE_NAME = MJRefresh;
PRODUCT_NAME = MJRefresh;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
3F317E47BC3F896C3BE2E9C22A1ACACE /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 851BBDA95F8412173115442AA4B9CEC5 /* Pods-CNLiveRefreshFooter_Tests.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-CNLiveRefreshFooter_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CNLiveRefreshFooter_Tests/Pods-CNLiveRefreshFooter_Tests.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
400134497F4B88BC4BC8C77C53FFCE21 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C7CC4BFD7F50D0125AF48708AD97F146 /* CNLiveRefreshFooter.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer";
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CNLiveRefreshFooter";
INFOPLIST_FILE = "Target Support Files/CNLiveRefreshFooter/ResourceBundle-CNLiveRefreshFooter-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
PRODUCT_NAME = CNLiveRefreshFooter;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
54B9FE5F115293277F45CE58A87D3BDF /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C7CC4BFD7F50D0125AF48708AD97F146 /* CNLiveRefreshFooter.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/CNLiveRefreshFooter/CNLiveRefreshFooter-prefix.pch";
INFOPLIST_FILE = "Target Support Files/CNLiveRefreshFooter/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/CNLiveRefreshFooter/CNLiveRefreshFooter.modulemap";
PRODUCT_MODULE_NAME = CNLiveRefreshFooter;
PRODUCT_NAME = CNLiveRefreshFooter;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
5DE19CECB206ACCCACF04D62F93FFDA6 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGNING_ALLOWED = NO;
CODE_SIGNING_REQUIRED = NO;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_RELEASE=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 4.2;
SYMROOT = "${SRCROOT}/../build";
};
name = Release;
};
858D01EEFE984249A9581D18DBEA53F1 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGNING_ALLOWED = NO;
CODE_SIGNING_REQUIRED = NO;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_DEBUG=1",
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.2;
SYMROOT = "${SRCROOT}/../build";
};
name = Debug;
};
C02FC3E651D417917A0F1EC62833A51A /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 86E793DDDE92FA78384D1FDF7C5283C4 /* Pods-CNLiveRefreshFooter_Example.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-CNLiveRefreshFooter_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CNLiveRefreshFooter_Example/Pods-CNLiveRefreshFooter_Example.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
C2DF5B1D1AAB076D559A03714CC2907D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 240F5B7917D3F1FDFB931146ECB8CD6F /* MJRefresh.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch";
INFOPLIST_FILE = "Target Support Files/MJRefresh/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap";
PRODUCT_MODULE_NAME = MJRefresh;
PRODUCT_NAME = MJRefresh;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
F043C93C98BFB6F5622A6DC66B00FDA0 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E31FE368037DB756AF264BA156F3DBE3 /* Pods-CNLiveRefreshFooter_Tests.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-CNLiveRefreshFooter_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CNLiveRefreshFooter_Tests/Pods-CNLiveRefreshFooter_Tests.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
F7218B66AD034DB85A6B27B5998F44DE /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 24ACDE650527FF57D6A6EBFDAEDFCC3C /* Pods-CNLiveRefreshFooter_Example.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-CNLiveRefreshFooter_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CNLiveRefreshFooter_Example/Pods-CNLiveRefreshFooter_Example.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList;
buildConfigurations = (
858D01EEFE984249A9581D18DBEA53F1 /* Debug */,
5DE19CECB206ACCCACF04D62F93FFDA6 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
31FC733F59A86EECAE54C5BD43A2CF0E /* Build configuration list for PBXNativeTarget "Pods-CNLiveRefreshFooter_Example" */ = {
isa = XCConfigurationList;
buildConfigurations = (
F7218B66AD034DB85A6B27B5998F44DE /* Debug */,
C02FC3E651D417917A0F1EC62833A51A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
889C9D2B9F70A3EEB0D80E2DCC04864D /* Build configuration list for PBXNativeTarget "MJRefresh" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2F7E7475AFDC0744BD9E216CB46C433C /* Debug */,
C2DF5B1D1AAB076D559A03714CC2907D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
8CBC1C8E1C3AB9FA0E6015D73FEFC530 /* Build configuration list for PBXNativeTarget "CNLiveRefreshFooter-CNLiveRefreshFooter" */ = {
isa = XCConfigurationList;
buildConfigurations = (
400134497F4B88BC4BC8C77C53FFCE21 /* Debug */,
13772838DE2E0CB868EE50661D78449B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D97A293FCBE2A6AA6FF6FBFDC114DA36 /* Build configuration list for PBXNativeTarget "CNLiveRefreshFooter" */ = {
isa = XCConfigurationList;
buildConfigurations = (
236E6FC0E14B3DD7BD90579DA2961EA7 /* Debug */,
54B9FE5F115293277F45CE58A87D3BDF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E23CBE165A1011058D743D5192953233 /* Build configuration list for PBXNativeTarget "Pods-CNLiveRefreshFooter_Tests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
3F317E47BC3F896C3BE2E9C22A1ACACE /* Debug */,
F043C93C98BFB6F5622A6DC66B00FDA0 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}