project.pbxproj
77.7 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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
001AAB312D9EC41A7A1680A05FA2BFF1 /* CNLiveRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C487022CFE9E2F27A963683A89A23EB8 /* CNLiveRefreshHeader.m */; };
0DBC7E79A947A57DF19196833758A8D4 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E6643DEB2913C3EFD0B2310908C6B17D /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
0DDEA1B096566EC1E4A79B229EF78EBF /* Pods-CNLiveRefeshHeader_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DACCBE2360FDD56F51FBD33D66714AC /* Pods-CNLiveRefeshHeader_Tests-dummy.m */; };
0EE5C6937DA14BFAD402C9D8C2FDCBF6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
14F4C2B5DA98714B57D3A6344B0DD401 /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7D6998A720A4F72C5E60295FBAC081 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
1D38D64F8350E259AA5D245A5836C6D8 /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E087BFF5A4C96024394F46FAB373F0 /* MJRefreshBackGifFooter.m */; };
236DD5AD12C4CB964FD803658B0F07F2 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B572762D25AE884A6E6025CD584CA279 /* UIScrollView+MJExtension.m */; };
2C2643F8633F2C05534BFB24622FC7A4 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CCB235447F3E18360C0DAB5E88F117 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
2D7E148A73B05286C43600E983AFEB9A /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 772828D7C1B5EC016F2A391EE2153D58 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
30DFDCB659F797B696CB8264A9A65752 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DBD653F2D083BF866FD821BDED8FE0 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
3970BA3DE08D441E4F52FE29648D5AF9 /* Pods-CNLiveRefeshHeader_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45280C83DE3CCB21D16A29C984C44C50 /* Pods-CNLiveRefeshHeader_Example-dummy.m */; };
3BA5409E7990C575ED11CBA59AA4E7A4 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D6CA0A599AA99D8D4849BE6F09120B4 /* MJRefreshAutoFooter.m */; };
3C1B2C1441A69C3727408564B5EFB0CD /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D848AF815E0097FBB84EE1D0DC9525 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
3C8953896032B32EAE426E0393B815BA /* CNLiveRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FDD870495021E9D813353C8B7089EA7 /* CNLiveRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
3CD9F6A41A0E46687274802E32667323 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4EACB38F1A567B3B72EC78889D53F893 /* Assets.xcassets */; };
3DE244414008BC5AC4A60931BC91259C /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 25E1B990CE4C4CD728A278B17E09A203 /* MJRefreshFooter.m */; };
3F266212B0B91F642557F72F5DA78349 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 304CC5D3C2AF74487F5E51E2BD351C87 /* MJRefresh.bundle */; };
44253F118244C87C48D614FE5FA77B16 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = D8958DD64D4F8B06313515F077270881 /* MJRefreshConst.m */; };
4CA8D90015086436916DA6637603C3F2 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 399AAF1C3C81270C477811E90BCD5614 /* NSBundle+MJRefresh.m */; };
54EFF4830AFFF2A35C0ADD9ED70F90A2 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C7F9AE22051BDBE67493DD290EC5FD9 /* MJRefreshNormalHeader.m */; };
5C5ED51F6D300B7276548CD39DF9A74F /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF9F7454D6F6BFD295023CF64ADB47E /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
5CB96458D755BB81248CEB8C325DCCD5 /* Pods-CNLiveRefeshHeader_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BE943D5EEB79C815665DFC1290F216 /* Pods-CNLiveRefeshHeader_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
635C26F6A40BC4BDC45974A99A8C1F29 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACC47ED652C3A45F4AFC7ED038A9741 /* MJRefreshAutoStateFooter.m */; };
6501AA0C8E39820AD9AB1541BAE5C544 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 31FF1A0FB915D51EBFBE9B0C0D45453B /* MJRefreshBackNormalFooter.m */; };
66072988AB2309D91DB0DF0B9ABCE4A4 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D08C87668D5079F8C4B61B3D95436F64 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
69923DCCC53921033F3B525B4BA18F74 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E6152B094EC2308994892CDDA977AECA /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
6E84E0F3CF07A06042E0222F7A1B1C05 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C462EB7C5A1BFAAAA88A2A69302D6D0D /* MJRefreshAutoGifFooter.m */; };
78457B813F8F3F8D342BA705DF0D5093 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
7CCC2A913978FB90B39CE6B996EC6015 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D88BEDD1B5B89A24603DEEDA27376E2 /* MJRefreshHeader.m */; };
7DE259629DB6C84C679B3A5A052A3D0F /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 2970467A63AAFA0B9F669E070084CED3 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
8155BB32F19CE11FF081B3E8F03EC8A2 /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D452368B1E23E34CF464E99127DB84 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
8973FA50D71D43C61C7EC21192ABA8C9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
8C0A828351A47F3B85C805F419FB382B /* CNLiveRefeshHeader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 685B04BFBF95232E200602E7E901A135 /* CNLiveRefeshHeader-dummy.m */; };
8C2CE005BABC7FEAE2DDB5D09CA4BD1C /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7796E0B84D08F3954CB2285480571B /* MJRefreshStateHeader.m */; };
8DE44C45AAB08585D09624DB072D457C /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A8FF7AF8A14C7B50C338359C13B34F2 /* MJRefreshAutoNormalFooter.m */; };
8F94D883688E44CC5CF8697E748424CE /* CNLiveRefeshHeader-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A19F20805ED7E453C7B00A2DDFB4EF6D /* CNLiveRefeshHeader-umbrella.h */; };
93C48531A563FC961C3FBCAC24F1DA43 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D156FE66233F9837692DC3CE7C7C5BE2 /* MJRefresh-dummy.m */; };
97EAA69D85E7A5247BE9B87703470F8D /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D3494A5480373FC3C9BDB523B7E08DB9 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; };
9E3A08770CE550397679B52055C5AD58 /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C9FCFA9C7618D0EF63681404B1649D15 /* MJRefreshBackFooter.m */; };
A2C56667DB13ADED67B357EC784AEEE0 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 22423C0D9752CE12BC99436DC3E8D200 /* MJRefreshBackStateFooter.m */; };
A2E27DC1C77E406FDC16D2BC33CE3614 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF1CC5B1CE4B106461CE38F0B1BAAC9 /* UIView+MJExtension.m */; };
A2E58398BDA06189B8D8CC4F71DEA838 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0799BB500F75019954F20434A4457B /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; };
AEE64230B9537B94C74A22EE2B2C1717 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A65AF0DDBD5843EF6BE10063EC1DE255 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF1CBC68A099B13B477E3D6239105684 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2092D08C14CC084F39FCC1BADE5677 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B05C29A0C1F91D2ACB36CD17479B09FB /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D9FE37D6C27365FC5DB7076DB6A5080B /* MJRefreshComponent.m */; };
B0E499A87E8F24A365039CC99A2836FE /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD495E243B865555CCA84971329BB72 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
B157C03A41C2191211A6B2C58811D4F9 /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E7FFE3499454CF2099186410BBF06F /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
B97AE0AEA8DA08F3ECBB91080603B3AD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
BB2542D20973243518DEEBD8F9E1AF07 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F1604E7B9DB88EF0843279A3CF2928F5 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
CC41FC8FA35EF7B6F4204ED8F2F4BB3A /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = AD80BC1238C1F025946C78EA689F9FD6 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
D770347C8FA733E2DA11B99054BBED50 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 95959F04C94DDA65B9FFB6C650CFFA32 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
E590DF0D458E12662A068E859572FEC7 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 853528392C89701D61153E0753FCEE98 /* UIKit.framework */; };
EB8441A797B68725D970386D8A363511 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 359A4DE4AFFF1344A5481B9EE94ABAC4 /* UIScrollView+MJRefresh.m */; };
EC0A31B610BBA2C7B3DA4F5822D3768D /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFB5C2A3FCF292E4C8F9355FD0F053 /* MJRefreshGifHeader.m */; };
EE35133D1B397697DFC2294DDEA826C2 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF3ED4117E8669D0A80A95FA78F1B70 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
EFBB3B76E39BA104E27139135776470C /* CNLiveRefeshHeader.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 3A6EF0228D77C23D3E9583E668679901 /* CNLiveRefeshHeader.bundle */; };
F4A03A7F06B30AC36E20D302B4C19740 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F9717796B8BB5A0C18C41CD9A84856 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
FDF23DE6FD1CCECDDA5898D47FD6C8CE /* MJRefresh.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 17CCA8DD82EF1C1B58D82DE0271EB93F /* MJRefresh.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
13A943DFD34CB56D6997443EAAB57ABB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 67AC3C01AD7E2688B7C386B374615D50;
remoteInfo = MJRefresh;
};
35BA8DBCF450EB6A7C8EF429AA210F23 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A410C4B2C6886C365EFF3A0D499712BA;
remoteInfo = "CNLiveRefeshHeader-CNLiveRefeshHeader";
};
36A7AB4EB6742E078403758905E03AAC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 67AC3C01AD7E2688B7C386B374615D50;
remoteInfo = MJRefresh;
};
6F2211E98476811A872335674A74E8F1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 67AC3C01AD7E2688B7C386B374615D50;
remoteInfo = MJRefresh;
};
C269FA69E336C6B2F6BE3CCE75AB5840 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CB4487F6A82915EE959D274583BF5C2E;
remoteInfo = CNLiveRefeshHeader;
};
E5C498A5ACCB6F0EB68649CDA40CD7B5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FED63F2EF9155275CC92EFEB3DB7A63A;
remoteInfo = "Pods-CNLiveRefeshHeader_Example";
};
/* 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>"; };
066B99904D719446C9F31439558F1DEB /* ResourceBundle-CNLiveRefeshHeader-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-CNLiveRefeshHeader-Info.plist"; 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>"; };
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>"; };
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>"; };
296B9241B63A7B0A020A2D4707D3ED1F /* Pods-CNLiveRefeshHeader_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveRefeshHeader_Example-resources.sh"; 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>"; };
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>"; };
35646C797FA2D9A21FB788ABA6C1A9EC /* MJRefresh.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
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>"; };
3A6EF0228D77C23D3E9583E668679901 /* CNLiveRefeshHeader.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CNLiveRefeshHeader.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
3D6CA0A599AA99D8D4849BE6F09120B4 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = "<group>"; };
3DACCBE2360FDD56F51FBD33D66714AC /* Pods-CNLiveRefeshHeader_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveRefeshHeader_Tests-dummy.m"; sourceTree = "<group>"; };
45280C83DE3CCB21D16A29C984C44C50 /* Pods-CNLiveRefeshHeader_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLiveRefeshHeader_Example-dummy.m"; sourceTree = "<group>"; };
49A51B0CF2D07D2FAE0002178FBFF488 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4EACB38F1A567B3B72EC78889D53F893 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = CNLiveRefeshHeader/Assets/Assets.xcassets; sourceTree = "<group>"; };
4FDD870495021E9D813353C8B7089EA7 /* CNLiveRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CNLiveRefreshHeader.h; path = CNLiveRefeshHeader/Classes/CNLiveRefreshHeader.h; sourceTree = "<group>"; };
569D0822A3A489A714290FCF8E3D23F1 /* Pods-CNLiveRefeshHeader_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveRefeshHeader_Tests-acknowledgements.markdown"; 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; };
59F5C997286451AD6CB6D6FF1FF1057F /* CNLiveRefeshHeader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CNLiveRefeshHeader.xcconfig; sourceTree = "<group>"; };
63A885712C67076FDB4446CCF46CE414 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
67E2FCD38C5119A23D68D4F1F75E9C3E /* Pods-CNLiveRefeshHeader_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveRefeshHeader_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
685B04BFBF95232E200602E7E901A135 /* CNLiveRefeshHeader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CNLiveRefeshHeader-dummy.m"; sourceTree = "<group>"; };
6D88BEDD1B5B89A24603DEEDA27376E2 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = "<group>"; };
723FB85FE50E7631A7FC5363102BD5D1 /* CNLiveRefeshHeader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = CNLiveRefeshHeader.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
772828D7C1B5EC016F2A391EE2153D58 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
7A2092D08C14CC084F39FCC1BADE5677 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveRefeshHeader_Tests-umbrella.h"; 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>"; };
89E7FFE3499454CF2099186410BBF06F /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = "<group>"; };
8EB47CB3D2C2F5185F7A85B11AAED992 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = "<group>"; };
8EBDD8A39E384A7E3FEB1D14C0052127 /* Pods-CNLiveRefeshHeader_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveRefeshHeader_Tests-acknowledgements.plist"; 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; };
949B3C1084384A451A0E6354D7A84B75 /* Pods-CNLiveRefeshHeader_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveRefeshHeader_Tests-frameworks.sh"; sourceTree = "<group>"; };
95959F04C94DDA65B9FFB6C650CFFA32 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = "<group>"; };
9A207069880DBF05D62E96DC84DB5E28 /* Pods-CNLiveRefeshHeader_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveRefeshHeader_Example.debug.xcconfig"; 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>"; };
A03397A77C4B3987BE7A4C4F37334C70 /* Pods-CNLiveRefeshHeader_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveRefeshHeader_Tests.release.xcconfig"; sourceTree = "<group>"; };
A19F20805ED7E453C7B00A2DDFB4EF6D /* CNLiveRefeshHeader-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveRefeshHeader-umbrella.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>"; };
A7EFADFB6F36DFD8AE7AB8E6AB233EB4 /* Pods-CNLiveRefeshHeader_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveRefeshHeader_Example-frameworks.sh"; sourceTree = "<group>"; };
AC4DFBD98943B8CFABE697F31B4741AD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = 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>"; };
AF23A19215E0E3C98154F3C99F8A68D2 /* Pods-CNLiveRefeshHeader_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveRefeshHeader_Tests.debug.xcconfig"; 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>"; };
B7C064851F8DD6C8F18547BA941D7918 /* CNLiveRefeshHeader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveRefeshHeader-prefix.pch"; sourceTree = "<group>"; };
BABB5E701311EBA533B12D6DB94CE9E3 /* Pods_CNLiveRefeshHeader_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveRefeshHeader_Example.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>"; };
C3B79BD8E72617C5093ADFB65F3D3797 /* Pods-CNLiveRefeshHeader_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLiveRefeshHeader_Example-acknowledgements.plist"; sourceTree = "<group>"; };
C462EB7C5A1BFAAAA88A2A69302D6D0D /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
C487022CFE9E2F27A963683A89A23EB8 /* CNLiveRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CNLiveRefreshHeader.m; path = CNLiveRefeshHeader/Classes/CNLiveRefreshHeader.m; sourceTree = "<group>"; };
C59CA3B35611069886BD9B24209A66D8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C9FCFA9C7618D0EF63681404B1649D15 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = "<group>"; };
CAF45AE6C741BFAAF386D8D8D869A212 /* CNLiveRefeshHeader.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CNLiveRefeshHeader.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CB5B068D3323E633575CC590C3718E1B /* Pods_CNLiveRefeshHeader_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveRefeshHeader_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CC7B5D082FA2C3C56A9351ED6CC864F5 /* Pods-CNLiveRefeshHeader_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLiveRefeshHeader_Tests-resources.sh"; sourceTree = "<group>"; };
CD0799BB500F75019954F20434A4457B /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = "<group>"; };
CD3B3DD164ECE6AA94C83D58D73CCA08 /* Pods-CNLiveRefeshHeader_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveRefeshHeader_Tests.modulemap"; 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>"; };
D89D318A1539A61EBDF3F4D05D928E6F /* Pods-CNLiveRefeshHeader_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLiveRefeshHeader_Example.modulemap"; sourceTree = "<group>"; };
D9FE37D6C27365FC5DB7076DB6A5080B /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = "<group>"; };
DB790E63B1EAE48265C6D9D2769574C8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; 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>"; };
EAB2C6B74BA8308B609B017683A28DC8 /* CNLiveRefeshHeader.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CNLiveRefeshHeader.modulemap; sourceTree = "<group>"; };
EEA71030B18BDC9EE413A38CDFD28100 /* Pods-CNLiveRefeshHeader_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLiveRefeshHeader_Example.release.xcconfig"; 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>"; };
F4BE943D5EEB79C815665DFC1290F216 /* Pods-CNLiveRefeshHeader_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveRefeshHeader_Example-umbrella.h"; sourceTree = "<group>"; };
F78F1195DFCE439080FFB9603AFA4040 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
1A67A24CA11E6368D39A0761210599AA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
78457B813F8F3F8D342BA705DF0D5093 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
280078DD7D5B1DBF0D17046184EDF222 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8973FA50D71D43C61C7EC21192ABA8C9 /* Foundation.framework in Frameworks */,
FDF23DE6FD1CCECDDA5898D47FD6C8CE /* MJRefresh.framework in Frameworks */,
E590DF0D458E12662A068E859572FEC7 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
58CFB4DB371EF9A4ECF64577CF49BAE4 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0EE5C6937DA14BFAD402C9D8C2FDCBF6 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7748E1DA5FD5EFE92F3CC0030A4EFA20 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
E2CDEA9562D5A72E7C26DB272AC9C116 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B97AE0AEA8DA08F3ECBB91080603B3AD /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
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>";
};
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>";
};
480C55905EDEA7675034116137857AA3 /* Support Files */ = {
isa = PBXGroup;
children = (
EAB2C6B74BA8308B609B017683A28DC8 /* CNLiveRefeshHeader.modulemap */,
59F5C997286451AD6CB6D6FF1FF1057F /* CNLiveRefeshHeader.xcconfig */,
685B04BFBF95232E200602E7E901A135 /* CNLiveRefeshHeader-dummy.m */,
B7C064851F8DD6C8F18547BA941D7918 /* CNLiveRefeshHeader-prefix.pch */,
A19F20805ED7E453C7B00A2DDFB4EF6D /* CNLiveRefeshHeader-umbrella.h */,
49A51B0CF2D07D2FAE0002178FBFF488 /* Info.plist */,
066B99904D719446C9F31439558F1DEB /* ResourceBundle-CNLiveRefeshHeader-Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/CNLiveRefeshHeader";
sourceTree = "<group>";
};
4F1F988A76E9DB6F78201F9BB5428936 /* Products */ = {
isa = PBXGroup;
children = (
3A6EF0228D77C23D3E9583E668679901 /* CNLiveRefeshHeader.bundle */,
CAF45AE6C741BFAAF386D8D8D869A212 /* CNLiveRefeshHeader.framework */,
35646C797FA2D9A21FB788ABA6C1A9EC /* MJRefresh.framework */,
BABB5E701311EBA533B12D6DB94CE9E3 /* Pods_CNLiveRefeshHeader_Example.framework */,
CB5B068D3323E633575CC590C3718E1B /* Pods_CNLiveRefeshHeader_Tests.framework */,
);
name = Products;
sourceTree = "<group>";
};
51BF3A1EB4E1530EDD4FCEEDE244F515 /* Pods-CNLiveRefeshHeader_Example */ = {
isa = PBXGroup;
children = (
AC4DFBD98943B8CFABE697F31B4741AD /* Info.plist */,
D89D318A1539A61EBDF3F4D05D928E6F /* Pods-CNLiveRefeshHeader_Example.modulemap */,
67E2FCD38C5119A23D68D4F1F75E9C3E /* Pods-CNLiveRefeshHeader_Example-acknowledgements.markdown */,
C3B79BD8E72617C5093ADFB65F3D3797 /* Pods-CNLiveRefeshHeader_Example-acknowledgements.plist */,
45280C83DE3CCB21D16A29C984C44C50 /* Pods-CNLiveRefeshHeader_Example-dummy.m */,
A7EFADFB6F36DFD8AE7AB8E6AB233EB4 /* Pods-CNLiveRefeshHeader_Example-frameworks.sh */,
296B9241B63A7B0A020A2D4707D3ED1F /* Pods-CNLiveRefeshHeader_Example-resources.sh */,
F4BE943D5EEB79C815665DFC1290F216 /* Pods-CNLiveRefeshHeader_Example-umbrella.h */,
9A207069880DBF05D62E96DC84DB5E28 /* Pods-CNLiveRefeshHeader_Example.debug.xcconfig */,
EEA71030B18BDC9EE413A38CDFD28100 /* Pods-CNLiveRefeshHeader_Example.release.xcconfig */,
);
name = "Pods-CNLiveRefeshHeader_Example";
path = "Target Support Files/Pods-CNLiveRefeshHeader_Example";
sourceTree = "<group>";
};
6A06433F80093BADBE67BFF332FBA5A5 /* Resources */ = {
isa = PBXGroup;
children = (
304CC5D3C2AF74487F5E51E2BD351C87 /* MJRefresh.bundle */,
);
name = Resources;
sourceTree = "<group>";
};
6D51387E0F85165C1044DBC248C311D0 /* Pods-CNLiveRefeshHeader_Tests */ = {
isa = PBXGroup;
children = (
DB790E63B1EAE48265C6D9D2769574C8 /* Info.plist */,
CD3B3DD164ECE6AA94C83D58D73CCA08 /* Pods-CNLiveRefeshHeader_Tests.modulemap */,
569D0822A3A489A714290FCF8E3D23F1 /* Pods-CNLiveRefeshHeader_Tests-acknowledgements.markdown */,
8EBDD8A39E384A7E3FEB1D14C0052127 /* Pods-CNLiveRefeshHeader_Tests-acknowledgements.plist */,
3DACCBE2360FDD56F51FBD33D66714AC /* Pods-CNLiveRefeshHeader_Tests-dummy.m */,
949B3C1084384A451A0E6354D7A84B75 /* Pods-CNLiveRefeshHeader_Tests-frameworks.sh */,
CC7B5D082FA2C3C56A9351ED6CC864F5 /* Pods-CNLiveRefeshHeader_Tests-resources.sh */,
7A2092D08C14CC084F39FCC1BADE5677 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h */,
AF23A19215E0E3C98154F3C99F8A68D2 /* Pods-CNLiveRefeshHeader_Tests.debug.xcconfig */,
A03397A77C4B3987BE7A4C4F37334C70 /* Pods-CNLiveRefeshHeader_Tests.release.xcconfig */,
);
name = "Pods-CNLiveRefeshHeader_Tests";
path = "Target Support Files/Pods-CNLiveRefeshHeader_Tests";
sourceTree = "<group>";
};
7468B965B4B0E81DD27B91840DC26F8F /* CNLiveRefeshHeader */ = {
isa = PBXGroup;
children = (
4FDD870495021E9D813353C8B7089EA7 /* CNLiveRefreshHeader.h */,
C487022CFE9E2F27A963683A89A23EB8 /* CNLiveRefreshHeader.m */,
CCB7BCD81A42978EB0F7419D4E47C3E9 /* Pod */,
7A98D627AA7AB28602C9AB7EE29BAFD7 /* Resources */,
480C55905EDEA7675034116137857AA3 /* Support Files */,
);
name = CNLiveRefeshHeader;
path = ../..;
sourceTree = "<group>";
};
7A98D627AA7AB28602C9AB7EE29BAFD7 /* Resources */ = {
isa = PBXGroup;
children = (
4EACB38F1A567B3B72EC78889D53F893 /* Assets.xcassets */,
);
name = Resources;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
D34C7FFE46987BCE3817FF88E8E587C0 /* Development Pods */,
F63DF0D4E566BB69A93A3FC7DC0AAD1D /* Frameworks */,
DD0132D41CBFCB2611DA7EABABDA47E4 /* Pods */,
4F1F988A76E9DB6F78201F9BB5428936 /* Products */,
9B6C2879B59C2D20DA3FFF2D956EBA66 /* Targets Support Files */,
);
sourceTree = "<group>";
};
9B6C2879B59C2D20DA3FFF2D956EBA66 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
51BF3A1EB4E1530EDD4FCEEDE244F515 /* Pods-CNLiveRefeshHeader_Example */,
6D51387E0F85165C1044DBC248C311D0 /* Pods-CNLiveRefeshHeader_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
CCB7BCD81A42978EB0F7419D4E47C3E9 /* Pod */ = {
isa = PBXGroup;
children = (
723FB85FE50E7631A7FC5363102BD5D1 /* CNLiveRefeshHeader.podspec */,
63A885712C67076FDB4446CCF46CE414 /* LICENSE */,
F78F1195DFCE439080FFB9603AFA4040 /* README.md */,
);
name = Pod;
sourceTree = "<group>";
};
D34C7FFE46987BCE3817FF88E8E587C0 /* Development Pods */ = {
isa = PBXGroup;
children = (
7468B965B4B0E81DD27B91840DC26F8F /* CNLiveRefeshHeader */,
);
name = "Development Pods";
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 */
0F2EC269343B2F859122204F32DB0CAD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
66072988AB2309D91DB0DF0B9ABCE4A4 /* MJRefresh-umbrella.h in Headers */,
F4A03A7F06B30AC36E20D302B4C19740 /* MJRefresh.h in Headers */,
B157C03A41C2191211A6B2C58811D4F9 /* MJRefreshAutoFooter.h in Headers */,
5C5ED51F6D300B7276548CD39DF9A74F /* MJRefreshAutoGifFooter.h in Headers */,
AEE64230B9537B94C74A22EE2B2C1717 /* MJRefreshAutoNormalFooter.h in Headers */,
30DFDCB659F797B696CB8264A9A65752 /* MJRefreshAutoStateFooter.h in Headers */,
8155BB32F19CE11FF081B3E8F03EC8A2 /* MJRefreshBackFooter.h in Headers */,
69923DCCC53921033F3B525B4BA18F74 /* MJRefreshBackGifFooter.h in Headers */,
2D7E148A73B05286C43600E983AFEB9A /* MJRefreshBackNormalFooter.h in Headers */,
14F4C2B5DA98714B57D3A6344B0DD401 /* MJRefreshBackStateFooter.h in Headers */,
A2E58398BDA06189B8D8CC4F71DEA838 /* MJRefreshComponent.h in Headers */,
97EAA69D85E7A5247BE9B87703470F8D /* MJRefreshConst.h in Headers */,
3C1B2C1441A69C3727408564B5EFB0CD /* MJRefreshFooter.h in Headers */,
D770347C8FA733E2DA11B99054BBED50 /* MJRefreshGifHeader.h in Headers */,
2C2643F8633F2C05534BFB24622FC7A4 /* MJRefreshHeader.h in Headers */,
B0E499A87E8F24A365039CC99A2836FE /* MJRefreshNormalHeader.h in Headers */,
EE35133D1B397697DFC2294DDEA826C2 /* MJRefreshStateHeader.h in Headers */,
BB2542D20973243518DEEBD8F9E1AF07 /* NSBundle+MJRefresh.h in Headers */,
0DBC7E79A947A57DF19196833758A8D4 /* UIScrollView+MJExtension.h in Headers */,
7DE259629DB6C84C679B3A5A052A3D0F /* UIScrollView+MJRefresh.h in Headers */,
CC41FC8FA35EF7B6F4204ED8F2F4BB3A /* UIView+MJExtension.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
59517B31395FD59CC2624B59442542A7 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
5CB96458D755BB81248CEB8C325DCCD5 /* Pods-CNLiveRefeshHeader_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6207A94F5225759C7A3D11CD78D5840E /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
3C8953896032B32EAE426E0393B815BA /* CNLiveRefreshHeader.h in Headers */,
8F94D883688E44CC5CF8697E748424CE /* CNLiveRefeshHeader-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7F451B179333BB2DC4462C3E195A1DFE /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
AF1CBC68A099B13B477E3D6239105684 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
348DE061ED77E0D85D4A5B6A33FBF0FA /* Pods-CNLiveRefeshHeader_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = C549153909DC6A5627D1545F7A3B6288 /* Build configuration list for PBXNativeTarget "Pods-CNLiveRefeshHeader_Tests" */;
buildPhases = (
7F451B179333BB2DC4462C3E195A1DFE /* Headers */,
FE178CEC7611BF689127503E78C9D5CC /* Sources */,
58CFB4DB371EF9A4ECF64577CF49BAE4 /* Frameworks */,
6278A2BC6DA21346A85B0A11E4822B15 /* Resources */,
);
buildRules = (
);
dependencies = (
96B7545D6723CAE2CDF039EFCD92B794 /* PBXTargetDependency */,
54AFA2F9203691CCBAE59E14ED161045 /* PBXTargetDependency */,
);
name = "Pods-CNLiveRefeshHeader_Tests";
productName = "Pods-CNLiveRefeshHeader_Tests";
productReference = CB5B068D3323E633575CC590C3718E1B /* Pods_CNLiveRefeshHeader_Tests.framework */;
productType = "com.apple.product-type.framework";
};
67AC3C01AD7E2688B7C386B374615D50 /* MJRefresh */ = {
isa = PBXNativeTarget;
buildConfigurationList = F9664B746824C4953AFCFBF6AA009C42 /* Build configuration list for PBXNativeTarget "MJRefresh" */;
buildPhases = (
0F2EC269343B2F859122204F32DB0CAD /* Headers */,
011EAC1FDDDF9B3A10D2460A06B67609 /* Sources */,
E2CDEA9562D5A72E7C26DB272AC9C116 /* Frameworks */,
6DF2A2CE8A17B23182A609D047020151 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MJRefresh;
productName = MJRefresh;
productReference = 35646C797FA2D9A21FB788ABA6C1A9EC /* MJRefresh.framework */;
productType = "com.apple.product-type.framework";
};
A410C4B2C6886C365EFF3A0D499712BA /* CNLiveRefeshHeader-CNLiveRefeshHeader */ = {
isa = PBXNativeTarget;
buildConfigurationList = 48D085406D373D3F5A4EA22309168C3A /* Build configuration list for PBXNativeTarget "CNLiveRefeshHeader-CNLiveRefeshHeader" */;
buildPhases = (
A6B5C360AAB014F372539DAC4758182E /* Sources */,
7748E1DA5FD5EFE92F3CC0030A4EFA20 /* Frameworks */,
F33C632813ACF82804C749075FF9DA00 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "CNLiveRefeshHeader-CNLiveRefeshHeader";
productName = "CNLiveRefeshHeader-CNLiveRefeshHeader";
productReference = 3A6EF0228D77C23D3E9583E668679901 /* CNLiveRefeshHeader.bundle */;
productType = "com.apple.product-type.bundle";
};
CB4487F6A82915EE959D274583BF5C2E /* CNLiveRefeshHeader */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4349CA5A5A8327ABF8B8803065A64173 /* Build configuration list for PBXNativeTarget "CNLiveRefeshHeader" */;
buildPhases = (
6207A94F5225759C7A3D11CD78D5840E /* Headers */,
E33E87A9EEBECDCEFF89B9508EBF7C61 /* Sources */,
280078DD7D5B1DBF0D17046184EDF222 /* Frameworks */,
0E6ACE1C279119C7C8F6811C64FC7709 /* Resources */,
);
buildRules = (
);
dependencies = (
C6734547DF8461161778374D5D28A97D /* PBXTargetDependency */,
1ADE60230B9910D4BED6ECB1508EA76F /* PBXTargetDependency */,
);
name = CNLiveRefeshHeader;
productName = CNLiveRefeshHeader;
productReference = CAF45AE6C741BFAAF386D8D8D869A212 /* CNLiveRefeshHeader.framework */;
productType = "com.apple.product-type.framework";
};
FED63F2EF9155275CC92EFEB3DB7A63A /* Pods-CNLiveRefeshHeader_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 77E70D5790417F0B22235D51B64970FE /* Build configuration list for PBXNativeTarget "Pods-CNLiveRefeshHeader_Example" */;
buildPhases = (
59517B31395FD59CC2624B59442542A7 /* Headers */,
FD4AEEB4EAEF573178AC02F9C08E8172 /* Sources */,
1A67A24CA11E6368D39A0761210599AA /* Frameworks */,
8FD97CF8F9950EB6093F3613049F2D09 /* Resources */,
);
buildRules = (
);
dependencies = (
D89E84ED40B50025F8F8078D86F6667F /* PBXTargetDependency */,
ADEC10B37FBC75CEA6F35A23DD69E166 /* PBXTargetDependency */,
);
name = "Pods-CNLiveRefeshHeader_Example";
productName = "Pods-CNLiveRefeshHeader_Example";
productReference = BABB5E701311EBA533B12D6DB94CE9E3 /* Pods_CNLiveRefeshHeader_Example.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 = 4F1F988A76E9DB6F78201F9BB5428936 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
CB4487F6A82915EE959D274583BF5C2E /* CNLiveRefeshHeader */,
A410C4B2C6886C365EFF3A0D499712BA /* CNLiveRefeshHeader-CNLiveRefeshHeader */,
67AC3C01AD7E2688B7C386B374615D50 /* MJRefresh */,
FED63F2EF9155275CC92EFEB3DB7A63A /* Pods-CNLiveRefeshHeader_Example */,
348DE061ED77E0D85D4A5B6A33FBF0FA /* Pods-CNLiveRefeshHeader_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
0E6ACE1C279119C7C8F6811C64FC7709 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
EFBB3B76E39BA104E27139135776470C /* CNLiveRefeshHeader.bundle in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6278A2BC6DA21346A85B0A11E4822B15 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
6DF2A2CE8A17B23182A609D047020151 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
3F266212B0B91F642557F72F5DA78349 /* MJRefresh.bundle in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8FD97CF8F9950EB6093F3613049F2D09 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
F33C632813ACF82804C749075FF9DA00 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
3CD9F6A41A0E46687274802E32667323 /* Assets.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
011EAC1FDDDF9B3A10D2460A06B67609 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
93C48531A563FC961C3FBCAC24F1DA43 /* MJRefresh-dummy.m in Sources */,
3BA5409E7990C575ED11CBA59AA4E7A4 /* MJRefreshAutoFooter.m in Sources */,
6E84E0F3CF07A06042E0222F7A1B1C05 /* MJRefreshAutoGifFooter.m in Sources */,
8DE44C45AAB08585D09624DB072D457C /* MJRefreshAutoNormalFooter.m in Sources */,
635C26F6A40BC4BDC45974A99A8C1F29 /* MJRefreshAutoStateFooter.m in Sources */,
9E3A08770CE550397679B52055C5AD58 /* MJRefreshBackFooter.m in Sources */,
1D38D64F8350E259AA5D245A5836C6D8 /* MJRefreshBackGifFooter.m in Sources */,
6501AA0C8E39820AD9AB1541BAE5C544 /* MJRefreshBackNormalFooter.m in Sources */,
A2C56667DB13ADED67B357EC784AEEE0 /* MJRefreshBackStateFooter.m in Sources */,
B05C29A0C1F91D2ACB36CD17479B09FB /* MJRefreshComponent.m in Sources */,
44253F118244C87C48D614FE5FA77B16 /* MJRefreshConst.m in Sources */,
3DE244414008BC5AC4A60931BC91259C /* MJRefreshFooter.m in Sources */,
EC0A31B610BBA2C7B3DA4F5822D3768D /* MJRefreshGifHeader.m in Sources */,
7CCC2A913978FB90B39CE6B996EC6015 /* MJRefreshHeader.m in Sources */,
54EFF4830AFFF2A35C0ADD9ED70F90A2 /* MJRefreshNormalHeader.m in Sources */,
8C2CE005BABC7FEAE2DDB5D09CA4BD1C /* MJRefreshStateHeader.m in Sources */,
4CA8D90015086436916DA6637603C3F2 /* NSBundle+MJRefresh.m in Sources */,
236DD5AD12C4CB964FD803658B0F07F2 /* UIScrollView+MJExtension.m in Sources */,
EB8441A797B68725D970386D8A363511 /* UIScrollView+MJRefresh.m in Sources */,
A2E27DC1C77E406FDC16D2BC33CE3614 /* UIView+MJExtension.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A6B5C360AAB014F372539DAC4758182E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
E33E87A9EEBECDCEFF89B9508EBF7C61 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8C0A828351A47F3B85C805F419FB382B /* CNLiveRefeshHeader-dummy.m in Sources */,
001AAB312D9EC41A7A1680A05FA2BFF1 /* CNLiveRefreshHeader.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FD4AEEB4EAEF573178AC02F9C08E8172 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
3970BA3DE08D441E4F52FE29648D5AF9 /* Pods-CNLiveRefeshHeader_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FE178CEC7611BF689127503E78C9D5CC /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0DDEA1B096566EC1E4A79B229EF78EBF /* Pods-CNLiveRefeshHeader_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
1ADE60230B9910D4BED6ECB1508EA76F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = 67AC3C01AD7E2688B7C386B374615D50 /* MJRefresh */;
targetProxy = 36A7AB4EB6742E078403758905E03AAC /* PBXContainerItemProxy */;
};
54AFA2F9203691CCBAE59E14ED161045 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Pods-CNLiveRefeshHeader_Example";
target = FED63F2EF9155275CC92EFEB3DB7A63A /* Pods-CNLiveRefeshHeader_Example */;
targetProxy = E5C498A5ACCB6F0EB68649CDA40CD7B5 /* PBXContainerItemProxy */;
};
96B7545D6723CAE2CDF039EFCD92B794 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = 67AC3C01AD7E2688B7C386B374615D50 /* MJRefresh */;
targetProxy = 6F2211E98476811A872335674A74E8F1 /* PBXContainerItemProxy */;
};
ADEC10B37FBC75CEA6F35A23DD69E166 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = 67AC3C01AD7E2688B7C386B374615D50 /* MJRefresh */;
targetProxy = 13A943DFD34CB56D6997443EAAB57ABB /* PBXContainerItemProxy */;
};
C6734547DF8461161778374D5D28A97D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "CNLiveRefeshHeader-CNLiveRefeshHeader";
target = A410C4B2C6886C365EFF3A0D499712BA /* CNLiveRefeshHeader-CNLiveRefeshHeader */;
targetProxy = 35BA8DBCF450EB6A7C8EF429AA210F23 /* PBXContainerItemProxy */;
};
D89E84ED40B50025F8F8078D86F6667F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = CNLiveRefeshHeader;
target = CB4487F6A82915EE959D274583BF5C2E /* CNLiveRefeshHeader */;
targetProxy = C269FA69E336C6B2F6BE3CCE75AB5840 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
0540F0F8088820999D32C447FCB75363 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 59F5C997286451AD6CB6D6FF1FF1057F /* CNLiveRefeshHeader.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/CNLiveRefeshHeader/CNLiveRefeshHeader-prefix.pch";
INFOPLIST_FILE = "Target Support Files/CNLiveRefeshHeader/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/CNLiveRefeshHeader/CNLiveRefeshHeader.modulemap";
PRODUCT_MODULE_NAME = CNLiveRefeshHeader;
PRODUCT_NAME = CNLiveRefeshHeader;
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;
};
10A40D9367F86B172035213B2FD1452A /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9A207069880DBF05D62E96DC84DB5E28 /* Pods-CNLiveRefeshHeader_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-CNLiveRefeshHeader_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-CNLiveRefeshHeader_Example/Pods-CNLiveRefeshHeader_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;
};
1AC15346266710768951F310D17394AB /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 59F5C997286451AD6CB6D6FF1FF1057F /* CNLiveRefeshHeader.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer";
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CNLiveRefeshHeader";
INFOPLIST_FILE = "Target Support Files/CNLiveRefeshHeader/ResourceBundle-CNLiveRefeshHeader-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
PRODUCT_NAME = CNLiveRefeshHeader;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
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;
};
AB886F39543869D515F14B7145E20B04 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 59F5C997286451AD6CB6D6FF1FF1057F /* CNLiveRefeshHeader.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "iPhone Developer";
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/CNLiveRefeshHeader";
INFOPLIST_FILE = "Target Support Files/CNLiveRefeshHeader/ResourceBundle-CNLiveRefeshHeader-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
PRODUCT_NAME = CNLiveRefeshHeader;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
B418864B0474E3D4A0D0FC624932A8E2 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A03397A77C4B3987BE7A4C4F37334C70 /* Pods-CNLiveRefeshHeader_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-CNLiveRefeshHeader_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-CNLiveRefeshHeader_Tests/Pods-CNLiveRefeshHeader_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;
};
B43CE51381A08B74EF92445B64BC7A51 /* 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;
};
BE1F04F5E13C67661D9B4682D613240A /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = AF23A19215E0E3C98154F3C99F8A68D2 /* Pods-CNLiveRefeshHeader_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-CNLiveRefeshHeader_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-CNLiveRefeshHeader_Tests/Pods-CNLiveRefeshHeader_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;
};
D0A12E358DA8D1AD800CA5E39D088048 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = EEA71030B18BDC9EE413A38CDFD28100 /* Pods-CNLiveRefeshHeader_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-CNLiveRefeshHeader_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-CNLiveRefeshHeader_Example/Pods-CNLiveRefeshHeader_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;
};
DA5F7FA403D72AA5ED867091A78880B4 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 59F5C997286451AD6CB6D6FF1FF1057F /* CNLiveRefeshHeader.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/CNLiveRefeshHeader/CNLiveRefeshHeader-prefix.pch";
INFOPLIST_FILE = "Target Support Files/CNLiveRefeshHeader/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/CNLiveRefeshHeader/CNLiveRefeshHeader.modulemap";
PRODUCT_MODULE_NAME = CNLiveRefeshHeader;
PRODUCT_NAME = CNLiveRefeshHeader;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
F222782B2C149C79E1A0A79277ACCFF1 /* 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;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList;
buildConfigurations = (
858D01EEFE984249A9581D18DBEA53F1 /* Debug */,
5DE19CECB206ACCCACF04D62F93FFDA6 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
4349CA5A5A8327ABF8B8803065A64173 /* Build configuration list for PBXNativeTarget "CNLiveRefeshHeader" */ = {
isa = XCConfigurationList;
buildConfigurations = (
DA5F7FA403D72AA5ED867091A78880B4 /* Debug */,
0540F0F8088820999D32C447FCB75363 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
48D085406D373D3F5A4EA22309168C3A /* Build configuration list for PBXNativeTarget "CNLiveRefeshHeader-CNLiveRefeshHeader" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1AC15346266710768951F310D17394AB /* Debug */,
AB886F39543869D515F14B7145E20B04 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
77E70D5790417F0B22235D51B64970FE /* Build configuration list for PBXNativeTarget "Pods-CNLiveRefeshHeader_Example" */ = {
isa = XCConfigurationList;
buildConfigurations = (
10A40D9367F86B172035213B2FD1452A /* Debug */,
D0A12E358DA8D1AD800CA5E39D088048 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C549153909DC6A5627D1545F7A3B6288 /* Build configuration list for PBXNativeTarget "Pods-CNLiveRefeshHeader_Tests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
BE1F04F5E13C67661D9B4682D613240A /* Debug */,
B418864B0474E3D4A0D0FC624932A8E2 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
F9664B746824C4953AFCFBF6AA009C42 /* Build configuration list for PBXNativeTarget "MJRefresh" */ = {
isa = XCConfigurationList;
buildConfigurations = (
F222782B2C149C79E1A0A79277ACCFF1 /* Debug */,
B43CE51381A08B74EF92445B64BC7A51 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}