project.pbxproj
73.1 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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00CE2D5C6D1BDD40CE7A0D25965ABC73 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = D8958DD64D4F8B06313515F077270881 /* MJRefreshConst.m */; };
028101F1CCD67A884EA3AE7706CC850F /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E087BFF5A4C96024394F46FAB373F0 /* MJRefreshBackGifFooter.m */; };
0409451ABED7307F1329FB58DDABAC95 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A65AF0DDBD5843EF6BE10063EC1DE255 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
0588231D9DC122DA4054AF170DCC15B6 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D848AF815E0097FBB84EE1D0DC9525 /* MJRefreshFooter.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 */; };
22BF9FA7B2D93810211DAA7B164EAFCE /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 359A4DE4AFFF1344A5481B9EE94ABAC4 /* UIScrollView+MJRefresh.m */; };
2B51E1796D149CE645F4ABC47387613E /* CNLiveRefeshHeader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F934016644299FC1FA817C3519B42FF /* CNLiveRefeshHeader-dummy.m */; };
2D971621E9B013E1258F9D5D1181C6C3 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D88BEDD1B5B89A24603DEEDA27376E2 /* MJRefreshHeader.m */; };
3106704F0C311B314636B7D781DC61F0 /* 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 */; };
3A35A2DAF4803802D2CA3E144791DAC0 /* MJRefresh.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 17CCA8DD82EF1C1B58D82DE0271EB93F /* MJRefresh.framework */; };
3D4488A2FABCA7847C5563619DB0163B /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBFB5C2A3FCF292E4C8F9355FD0F053 /* MJRefreshGifHeader.m */; };
3FE1C5EA492BB3F0BBF0FDD0100254F3 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C7F9AE22051BDBE67493DD290EC5FD9 /* MJRefreshNormalHeader.m */; };
44971D063DF8F0352E4EFDBB30040AB1 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 31FF1A0FB915D51EBFBE9B0C0D45453B /* MJRefreshBackNormalFooter.m */; };
49CCA174933E0458737618311324BEDD /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF3ED4117E8669D0A80A95FA78F1B70 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
49ED5D42ADEC094A0A2844523628479C /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C462EB7C5A1BFAAAA88A2A69302D6D0D /* MJRefreshAutoGifFooter.m */; };
4E54F55B21BB905800147A02 /* CNRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E54F55821BB905800147A02 /* CNRefreshHeader.m */; };
4E54F55C21BB905800147A02 /* CNRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E54F55921BB905800147A02 /* CNRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
4E54F56021BB938500147A02 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4E54F55F21BB938500147A02 /* Assets.xcassets */; };
4E577FFB81D00A4033D46140714A0F7C /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C9FCFA9C7618D0EF63681404B1649D15 /* MJRefreshBackFooter.m */; };
53A8C1686FA1D1A9A59F2A3133C2C2B5 /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = AD80BC1238C1F025946C78EA689F9FD6 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
54F5904F173DF8E7F08CBF5869FC60FC /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF1CC5B1CE4B106461CE38F0B1BAAC9 /* UIView+MJExtension.m */; };
5CB96458D755BB81248CEB8C325DCCD5 /* Pods-CNLiveRefeshHeader_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BE943D5EEB79C815665DFC1290F216 /* Pods-CNLiveRefeshHeader_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
65E76A18674D861EAE42374FD8814E19 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 772828D7C1B5EC016F2A391EE2153D58 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
6DFF0A633AC6D0610674E985B905D10D /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 25E1B990CE4C4CD728A278B17E09A203 /* MJRefreshFooter.m */; };
6E9E8C232C76625F390E70C9D306E612 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7796E0B84D08F3954CB2285480571B /* MJRefreshStateHeader.m */; };
6EB2C85B3D42D75CD2C4216AE747C04A /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF9F7454D6F6BFD295023CF64ADB47E /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
77C6B13AC7DCF4E95ED7955E856005C4 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CCB235447F3E18360C0DAB5E88F117 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
78457B813F8F3F8D342BA705DF0D5093 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
79313D4C886E9F23E7A6FCD8EC774197 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACC47ED652C3A45F4AFC7ED038A9741 /* MJRefreshAutoStateFooter.m */; };
7F691B8CBDA2BF540A16144ADE8ECE4D /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E6643DEB2913C3EFD0B2310908C6B17D /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
80E495E413937FDA24EDA4928E91E48C /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A8FF7AF8A14C7B50C338359C13B34F2 /* MJRefreshAutoNormalFooter.m */; };
813E206877B35F62E67C7507EA2C1FEC /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D3494A5480373FC3C9BDB523B7E08DB9 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; };
829D21F4F6B7091F183A23F3998A6ADB /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 95959F04C94DDA65B9FFB6C650CFFA32 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
8C3B684C6052BB75BCA29CDB596BFF3A /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7D6998A720A4F72C5E60295FBAC081 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
97B95D5811F7BE051CC7A1C779E62A85 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D6CA0A599AA99D8D4849BE6F09120B4 /* MJRefreshAutoFooter.m */; };
A5E337A4B3EC338D41B787CFA3417388 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 853528392C89701D61153E0753FCEE98 /* UIKit.framework */; };
A742E654C2CADC6DF89FBB5AAB8AC783 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D9FE37D6C27365FC5DB7076DB6A5080B /* MJRefreshComponent.m */; };
A7E29716DB386CF0DF93B454A61E3659 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD495E243B865555CCA84971329BB72 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABF60AD4F4159DBFF0786169884531B0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
AF1CBC68A099B13B477E3D6239105684 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2092D08C14CC084F39FCC1BADE5677 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B0903C64BC47472B26243F52A856B5A3 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0799BB500F75019954F20434A4457B /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; };
B483730CEAF2325FCB44CAF2588589B7 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F9717796B8BB5A0C18C41CD9A84856 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
B52121B0CBC3BBEA9EA56DDD3FB95488 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 304CC5D3C2AF74487F5E51E2BD351C87 /* MJRefresh.bundle */; };
BB88675CB7D3DCD99994DA69A22D8361 /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D452368B1E23E34CF464E99127DB84 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
BC3A470E813D38858A796B5335FFDDC7 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B572762D25AE884A6E6025CD584CA279 /* UIScrollView+MJExtension.m */; };
BC55FF7843F59D74B1985EDDBC2621FD /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E7FFE3499454CF2099186410BBF06F /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
C4A8EEE6CE071FF48DFB55A172A65A92 /* CNLiveRefeshHeader-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D4434DD6E86ED0B6887D9AE31DAB6D /* CNLiveRefeshHeader-umbrella.h */; };
C557B3A0F8B33579FB1196898A49BA97 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F1604E7B9DB88EF0843279A3CF2928F5 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
D9D69C2959E32904BD82EA6D945398EE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5740F0E3F5B79528E4F9BAF55A850995 /* Foundation.framework */; };
E12AE23983363942077CFE9CDC21CA76 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E6152B094EC2308994892CDDA977AECA /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
E73B22C4DE5F6AF41CA1F6FED37B7D27 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D08C87668D5079F8C4B61B3D95436F64 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
EA7CC40DEFF610DB39A333FE3AAB4C6B /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 2970467A63AAFA0B9F669E070084CED3 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
F153D70A09218F326D2F8E33E498A8A6 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D156FE66233F9837692DC3CE7C7C5BE2 /* MJRefresh-dummy.m */; };
F57E4328A9E42801894F710A774BCE96 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 399AAF1C3C81270C477811E90BCD5614 /* NSBundle+MJRefresh.m */; };
FACD2B56F48EF188048745E5E9ABA4F2 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 22423C0D9752CE12BC99436DC3E8D200 /* MJRefreshBackStateFooter.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
13A943DFD34CB56D6997443EAAB57ABB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A89869E22BC45FD7F19E55BFF3AF1623;
remoteInfo = MJRefresh;
};
6F2211E98476811A872335674A74E8F1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A89869E22BC45FD7F19E55BFF3AF1623;
remoteInfo = MJRefresh;
};
98CE2AF6F5951D8C112BA35C497F3A01 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A89869E22BC45FD7F19E55BFF3AF1623;
remoteInfo = MJRefresh;
};
C269FA69E336C6B2F6BE3CCE75AB5840 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1A7FF85B6C82A1FD54305E4646D9BDA9;
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>"; };
08A8140405BE3AE4A7624E5BC451AB91 /* MJRefresh.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0E0C7C096C66EDFAC3AA55995BAFE6DF /* Pods_CNLiveRefeshHeader_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveRefeshHeader_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
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>"; };
2009FA0BE38A0468B2AF78B26E8049F1 /* CNLiveRefeshHeader.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CNLiveRefeshHeader.framework; sourceTree = BUILT_PRODUCTS_DIR; };
20F2A1F168B75523F35553D4A4369BFB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; 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>"; };
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>"; };
3AB0EABDBBC41FD3DA441BC264EDF6C2 /* CNLiveRefeshHeader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CNLiveRefeshHeader.xcconfig; sourceTree = "<group>"; };
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>"; };
48EBCFC0022CA37D89299525856F9C60 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
4E54F55821BB905800147A02 /* CNRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CNRefreshHeader.m; sourceTree = "<group>"; };
4E54F55921BB905800147A02 /* CNRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CNRefreshHeader.h; sourceTree = "<group>"; };
4E54F55F21BB938500147A02 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; 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; };
67E2FCD38C5119A23D68D4F1F75E9C3E /* Pods-CNLiveRefeshHeader_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLiveRefeshHeader_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
6D88BEDD1B5B89A24603DEEDA27376E2 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; 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>"; };
7A2092D08C14CC084F39FCC1BADE5677 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveRefeshHeader_Tests-umbrella.h"; sourceTree = "<group>"; };
7F934016644299FC1FA817C3519B42FF /* CNLiveRefeshHeader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CNLiveRefeshHeader-dummy.m"; 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>"; };
8DE0DCD8633B670AD8331C4AC88A3B1C /* CNLiveRefeshHeader.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CNLiveRefeshHeader.modulemap; 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>"; };
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>"; };
A8130C3BEDD781C9D4857B5D910898AF /* CNLiveRefeshHeader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = CNLiveRefeshHeader.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
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>"; };
BCBFB5C2A3FCF292E4C8F9355FD0F053 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = "<group>"; };
BF4AA401DB2C4D73A4F70AE8F19D4507 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; 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>"; };
C59CA3B35611069886BD9B24209A66D8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C7D0DFC182F155A2EE6939E066C506C6 /* Pods_CNLiveRefeshHeader_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLiveRefeshHeader_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C9FCFA9C7618D0EF63681404B1649D15 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = "<group>"; };
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>"; };
D4116C8C7EC86904FD214FA677C84FB7 /* CNLiveRefeshHeader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveRefeshHeader-prefix.pch"; 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>"; };
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>"; };
F3D4434DD6E86ED0B6887D9AE31DAB6D /* CNLiveRefeshHeader-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLiveRefeshHeader-umbrella.h"; sourceTree = "<group>"; };
F4BE943D5EEB79C815665DFC1290F216 /* Pods-CNLiveRefeshHeader_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLiveRefeshHeader_Example-umbrella.h"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
1A67A24CA11E6368D39A0761210599AA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
78457B813F8F3F8D342BA705DF0D5093 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
485FDBE8EE8A19BA7A25892543E4E16A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ABF60AD4F4159DBFF0786169884531B0 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
58CFB4DB371EF9A4ECF64577CF49BAE4 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0EE5C6937DA14BFAD402C9D8C2FDCBF6 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A40AB8E0A35582942A028A046C7A7C00 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D9D69C2959E32904BD82EA6D945398EE /* Foundation.framework in Frameworks */,
3A35A2DAF4803802D2CA3E144791DAC0 /* MJRefresh.framework in Frameworks */,
A5E337A4B3EC338D41B787CFA3417388 /* UIKit.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>";
};
191971B79DACBDEA57D39CD1BA3996DB /* Products */ = {
isa = PBXGroup;
children = (
2009FA0BE38A0468B2AF78B26E8049F1 /* CNLiveRefeshHeader.framework */,
08A8140405BE3AE4A7624E5BC451AB91 /* MJRefresh.framework */,
0E0C7C096C66EDFAC3AA55995BAFE6DF /* Pods_CNLiveRefeshHeader_Example.framework */,
C7D0DFC182F155A2EE6939E066C506C6 /* Pods_CNLiveRefeshHeader_Tests.framework */,
);
name = Products;
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>";
};
4E54F55621BB905800147A02 /* CNLiveRefeshHeader */ = {
isa = PBXGroup;
children = (
4E54F55721BB905800147A02 /* Classes */,
4E54F55A21BB905800147A02 /* Assets */,
);
path = CNLiveRefeshHeader;
sourceTree = "<group>";
};
4E54F55721BB905800147A02 /* Classes */ = {
isa = PBXGroup;
children = (
4E54F55921BB905800147A02 /* CNRefreshHeader.h */,
4E54F55821BB905800147A02 /* CNRefreshHeader.m */,
);
path = Classes;
sourceTree = "<group>";
};
4E54F55A21BB905800147A02 /* Assets */ = {
isa = PBXGroup;
children = (
4E54F55F21BB938500147A02 /* Assets.xcassets */,
);
path = Assets;
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>";
};
6A51E5E0E84AC99E79CA3F9E0726EF63 /* Pod */ = {
isa = PBXGroup;
children = (
A8130C3BEDD781C9D4857B5D910898AF /* CNLiveRefeshHeader.podspec */,
BF4AA401DB2C4D73A4F70AE8F19D4507 /* LICENSE */,
48EBCFC0022CA37D89299525856F9C60 /* README.md */,
);
name = Pod;
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>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
BE042E6C0D1BBE393A3C39FC403A12A4 /* Development Pods */,
F63DF0D4E566BB69A93A3FC7DC0AAD1D /* Frameworks */,
DD0132D41CBFCB2611DA7EABABDA47E4 /* Pods */,
191971B79DACBDEA57D39CD1BA3996DB /* Products */,
9B6C2879B59C2D20DA3FFF2D956EBA66 /* Targets Support Files */,
);
sourceTree = "<group>";
};
92F4EF9817C0BBF2BAC60EA4E1442A9D /* CNLiveRefeshHeader */ = {
isa = PBXGroup;
children = (
4E54F55621BB905800147A02 /* CNLiveRefeshHeader */,
6A51E5E0E84AC99E79CA3F9E0726EF63 /* Pod */,
F49FAF045552BC8A524D1DA3138A3CFF /* Support Files */,
);
name = CNLiveRefeshHeader;
path = ../..;
sourceTree = "<group>";
};
9B6C2879B59C2D20DA3FFF2D956EBA66 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
51BF3A1EB4E1530EDD4FCEEDE244F515 /* Pods-CNLiveRefeshHeader_Example */,
6D51387E0F85165C1044DBC248C311D0 /* Pods-CNLiveRefeshHeader_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
BE042E6C0D1BBE393A3C39FC403A12A4 /* Development Pods */ = {
isa = PBXGroup;
children = (
92F4EF9817C0BBF2BAC60EA4E1442A9D /* 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>";
};
F49FAF045552BC8A524D1DA3138A3CFF /* Support Files */ = {
isa = PBXGroup;
children = (
8DE0DCD8633B670AD8331C4AC88A3B1C /* CNLiveRefeshHeader.modulemap */,
3AB0EABDBBC41FD3DA441BC264EDF6C2 /* CNLiveRefeshHeader.xcconfig */,
7F934016644299FC1FA817C3519B42FF /* CNLiveRefeshHeader-dummy.m */,
D4116C8C7EC86904FD214FA677C84FB7 /* CNLiveRefeshHeader-prefix.pch */,
F3D4434DD6E86ED0B6887D9AE31DAB6D /* CNLiveRefeshHeader-umbrella.h */,
20F2A1F168B75523F35553D4A4369BFB /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/CNLiveRefeshHeader";
sourceTree = "<group>";
};
F63DF0D4E566BB69A93A3FC7DC0AAD1D /* Frameworks */ = {
isa = PBXGroup;
children = (
17CCA8DD82EF1C1B58D82DE0271EB93F /* MJRefresh.framework */,
D586138D20C0FDDAAA69BED529E0B4AD /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
59517B31395FD59CC2624B59442542A7 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
5CB96458D755BB81248CEB8C325DCCD5 /* Pods-CNLiveRefeshHeader_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
67AD783692F6B9C7ABAA150DAC852869 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
4E54F55C21BB905800147A02 /* CNRefreshHeader.h in Headers */,
C4A8EEE6CE071FF48DFB55A172A65A92 /* CNLiveRefeshHeader-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7F451B179333BB2DC4462C3E195A1DFE /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
AF1CBC68A099B13B477E3D6239105684 /* Pods-CNLiveRefeshHeader_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C4A9B46BFE1F5A797ED6FA88F96EE77F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
E73B22C4DE5F6AF41CA1F6FED37B7D27 /* MJRefresh-umbrella.h in Headers */,
B483730CEAF2325FCB44CAF2588589B7 /* MJRefresh.h in Headers */,
BC55FF7843F59D74B1985EDDBC2621FD /* MJRefreshAutoFooter.h in Headers */,
6EB2C85B3D42D75CD2C4216AE747C04A /* MJRefreshAutoGifFooter.h in Headers */,
0409451ABED7307F1329FB58DDABAC95 /* MJRefreshAutoNormalFooter.h in Headers */,
3106704F0C311B314636B7D781DC61F0 /* MJRefreshAutoStateFooter.h in Headers */,
BB88675CB7D3DCD99994DA69A22D8361 /* MJRefreshBackFooter.h in Headers */,
E12AE23983363942077CFE9CDC21CA76 /* MJRefreshBackGifFooter.h in Headers */,
65E76A18674D861EAE42374FD8814E19 /* MJRefreshBackNormalFooter.h in Headers */,
8C3B684C6052BB75BCA29CDB596BFF3A /* MJRefreshBackStateFooter.h in Headers */,
B0903C64BC47472B26243F52A856B5A3 /* MJRefreshComponent.h in Headers */,
813E206877B35F62E67C7507EA2C1FEC /* MJRefreshConst.h in Headers */,
0588231D9DC122DA4054AF170DCC15B6 /* MJRefreshFooter.h in Headers */,
829D21F4F6B7091F183A23F3998A6ADB /* MJRefreshGifHeader.h in Headers */,
77C6B13AC7DCF4E95ED7955E856005C4 /* MJRefreshHeader.h in Headers */,
A7E29716DB386CF0DF93B454A61E3659 /* MJRefreshNormalHeader.h in Headers */,
49CCA174933E0458737618311324BEDD /* MJRefreshStateHeader.h in Headers */,
C557B3A0F8B33579FB1196898A49BA97 /* NSBundle+MJRefresh.h in Headers */,
7F691B8CBDA2BF540A16144ADE8ECE4D /* UIScrollView+MJExtension.h in Headers */,
EA7CC40DEFF610DB39A333FE3AAB4C6B /* UIScrollView+MJRefresh.h in Headers */,
53A8C1686FA1D1A9A59F2A3133C2C2B5 /* UIView+MJExtension.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
1A7FF85B6C82A1FD54305E4646D9BDA9 /* CNLiveRefeshHeader */ = {
isa = PBXNativeTarget;
buildConfigurationList = DBBE9EA7A9077C7924836FBDE94AC76A /* Build configuration list for PBXNativeTarget "CNLiveRefeshHeader" */;
buildPhases = (
67AD783692F6B9C7ABAA150DAC852869 /* Headers */,
0021A6AE81006FFCD3F8A41862FCB3EA /* Sources */,
A40AB8E0A35582942A028A046C7A7C00 /* Frameworks */,
98CA68798393048A34984D268E4BFBCB /* Resources */,
);
buildRules = (
);
dependencies = (
14645D77AA7E43965E0293C441CAF256 /* PBXTargetDependency */,
);
name = CNLiveRefeshHeader;
productName = CNLiveRefeshHeader;
productReference = 2009FA0BE38A0468B2AF78B26E8049F1 /* CNLiveRefeshHeader.framework */;
productType = "com.apple.product-type.framework";
};
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 = C7D0DFC182F155A2EE6939E066C506C6 /* Pods_CNLiveRefeshHeader_Tests.framework */;
productType = "com.apple.product-type.framework";
};
A89869E22BC45FD7F19E55BFF3AF1623 /* MJRefresh */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1529641398DE64F0AFCE354AADF1B475 /* Build configuration list for PBXNativeTarget "MJRefresh" */;
buildPhases = (
C4A9B46BFE1F5A797ED6FA88F96EE77F /* Headers */,
C4F2B6A31E9CA700916A19B06B7C49C1 /* Sources */,
485FDBE8EE8A19BA7A25892543E4E16A /* Frameworks */,
158692F5B64AB77A4AA7585E1D372C3A /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = MJRefresh;
productName = MJRefresh;
productReference = 08A8140405BE3AE4A7624E5BC451AB91 /* MJRefresh.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 = 0E0C7C096C66EDFAC3AA55995BAFE6DF /* 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 = 191971B79DACBDEA57D39CD1BA3996DB /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
1A7FF85B6C82A1FD54305E4646D9BDA9 /* CNLiveRefeshHeader */,
A89869E22BC45FD7F19E55BFF3AF1623 /* MJRefresh */,
FED63F2EF9155275CC92EFEB3DB7A63A /* Pods-CNLiveRefeshHeader_Example */,
348DE061ED77E0D85D4A5B6A33FBF0FA /* Pods-CNLiveRefeshHeader_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
158692F5B64AB77A4AA7585E1D372C3A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B52121B0CBC3BBEA9EA56DDD3FB95488 /* MJRefresh.bundle in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6278A2BC6DA21346A85B0A11E4822B15 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
8FD97CF8F9950EB6093F3613049F2D09 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
98CA68798393048A34984D268E4BFBCB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4E54F56021BB938500147A02 /* Assets.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
0021A6AE81006FFCD3F8A41862FCB3EA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2B51E1796D149CE645F4ABC47387613E /* CNLiveRefeshHeader-dummy.m in Sources */,
4E54F55B21BB905800147A02 /* CNRefreshHeader.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C4F2B6A31E9CA700916A19B06B7C49C1 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
F153D70A09218F326D2F8E33E498A8A6 /* MJRefresh-dummy.m in Sources */,
97B95D5811F7BE051CC7A1C779E62A85 /* MJRefreshAutoFooter.m in Sources */,
49ED5D42ADEC094A0A2844523628479C /* MJRefreshAutoGifFooter.m in Sources */,
80E495E413937FDA24EDA4928E91E48C /* MJRefreshAutoNormalFooter.m in Sources */,
79313D4C886E9F23E7A6FCD8EC774197 /* MJRefreshAutoStateFooter.m in Sources */,
4E577FFB81D00A4033D46140714A0F7C /* MJRefreshBackFooter.m in Sources */,
028101F1CCD67A884EA3AE7706CC850F /* MJRefreshBackGifFooter.m in Sources */,
44971D063DF8F0352E4EFDBB30040AB1 /* MJRefreshBackNormalFooter.m in Sources */,
FACD2B56F48EF188048745E5E9ABA4F2 /* MJRefreshBackStateFooter.m in Sources */,
A742E654C2CADC6DF89FBB5AAB8AC783 /* MJRefreshComponent.m in Sources */,
00CE2D5C6D1BDD40CE7A0D25965ABC73 /* MJRefreshConst.m in Sources */,
6DFF0A633AC6D0610674E985B905D10D /* MJRefreshFooter.m in Sources */,
3D4488A2FABCA7847C5563619DB0163B /* MJRefreshGifHeader.m in Sources */,
2D971621E9B013E1258F9D5D1181C6C3 /* MJRefreshHeader.m in Sources */,
3FE1C5EA492BB3F0BBF0FDD0100254F3 /* MJRefreshNormalHeader.m in Sources */,
6E9E8C232C76625F390E70C9D306E612 /* MJRefreshStateHeader.m in Sources */,
F57E4328A9E42801894F710A774BCE96 /* NSBundle+MJRefresh.m in Sources */,
BC3A470E813D38858A796B5335FFDDC7 /* UIScrollView+MJExtension.m in Sources */,
22BF9FA7B2D93810211DAA7B164EAFCE /* UIScrollView+MJRefresh.m in Sources */,
54F5904F173DF8E7F08CBF5869FC60FC /* UIView+MJExtension.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 */
14645D77AA7E43965E0293C441CAF256 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = A89869E22BC45FD7F19E55BFF3AF1623 /* MJRefresh */;
targetProxy = 98CE2AF6F5951D8C112BA35C497F3A01 /* PBXContainerItemProxy */;
};
54AFA2F9203691CCBAE59E14ED161045 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Pods-CNLiveRefeshHeader_Example";
target = FED63F2EF9155275CC92EFEB3DB7A63A /* Pods-CNLiveRefeshHeader_Example */;
targetProxy = E5C498A5ACCB6F0EB68649CDA40CD7B5 /* PBXContainerItemProxy */;
};
96B7545D6723CAE2CDF039EFCD92B794 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = A89869E22BC45FD7F19E55BFF3AF1623 /* MJRefresh */;
targetProxy = 6F2211E98476811A872335674A74E8F1 /* PBXContainerItemProxy */;
};
ADEC10B37FBC75CEA6F35A23DD69E166 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = MJRefresh;
target = A89869E22BC45FD7F19E55BFF3AF1623 /* MJRefresh */;
targetProxy = 13A943DFD34CB56D6997443EAAB57ABB /* PBXContainerItemProxy */;
};
D89E84ED40B50025F8F8078D86F6667F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = CNLiveRefeshHeader;
target = 1A7FF85B6C82A1FD54305E4646D9BDA9 /* CNLiveRefeshHeader */;
targetProxy = C269FA69E336C6B2F6BE3CCE75AB5840 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
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;
};
14C044A9005786378F96736B8C9BCF64 /* 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;
};
4034F3B42933C4DACA4C70FDF0E46988 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 3AB0EABDBBC41FD3DA441BC264EDF6C2 /* 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";
MACH_O_TYPE = staticlib;
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;
};
59B1ADB518FAF527650DDB51A67B5D16 /* 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;
};
5A49F55105CA371A08CEDE29F1356CE8 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 3AB0EABDBBC41FD3DA441BC264EDF6C2 /* 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";
MACH_O_TYPE = staticlib;
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;
};
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;
};
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;
};
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;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1529641398DE64F0AFCE354AADF1B475 /* Build configuration list for PBXNativeTarget "MJRefresh" */ = {
isa = XCConfigurationList;
buildConfigurations = (
14C044A9005786378F96736B8C9BCF64 /* Debug */,
59B1ADB518FAF527650DDB51A67B5D16 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList;
buildConfigurations = (
858D01EEFE984249A9581D18DBEA53F1 /* Debug */,
5DE19CECB206ACCCACF04D62F93FFDA6 /* 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;
};
DBBE9EA7A9077C7924836FBDE94AC76A /* Build configuration list for PBXNativeTarget "CNLiveRefeshHeader" */ = {
isa = XCConfigurationList;
buildConfigurations = (
4034F3B42933C4DACA4C70FDF0E46988 /* Debug */,
5A49F55105CA371A08CEDE29F1356CE8 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}