-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.pbxproj
1490 lines (1477 loc) · 109 KB
/
project.pbxproj
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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
1DCEE5BC8FC71311E50A2DCEC84E83A4 /* UIView+ASCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 63E4D363DC448426FD428D92D53C14C4 /* UIView+ASCommon.m */; };
20C5E1F7593D60F9210EF1E5A2F67BC7 /* NSDictionary+ASCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 86BB4B49B6E46FFA758DAEF63705F012 /* NSDictionary+ASCommon.h */; settings = {ATTRIBUTES = (Public, ); }; };
2E933590731C5438219EB33F2E51DB3A /* UIImage+ASColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CB78450191B59285BADFDE39044DC56 /* UIImage+ASColor.m */; };
3A5456A01638A1F1FD1355D5CF645ACF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 973BE4DFCC535F9366CE474D5ECA2AA1 /* Foundation.framework */; };
3AF6DD6B6CF6A664C42AA293ACAC0866 /* UIView+ASBackground.h in Headers */ = {isa = PBXBuildFile; fileRef = 9770527DD4A056A30CCEABC3459DC70B /* UIView+ASBackground.h */; settings = {ATTRIBUTES = (Public, ); }; };
3B86A4B608A65A1E13BF65B26D0CE4B7 /* ASCocoaCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D28364A9C556CFDC41D54BD0A2D652 /* ASCocoaCategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
3CD4CF266E3FB2C213DE12181689112D /* Pods-ASCocoaCategory_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C3B5A1EA047A4BAE4DDE36C8F0E469E /* Pods-ASCocoaCategory_Example-dummy.m */; };
412BF702AD3A454E60AC9746B775C635 /* ASCocoaCategory-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D175BA4CE7D0CC2B8FD79E7F0AC5F9C /* ASCocoaCategory-dummy.m */; };
453DD8EA21DC664E68EBC02A96EA340D /* UIView+ASBackground.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E3E78644FBC3E3BE0FB06F4BB122071 /* UIView+ASBackground.m */; };
508BC5F06B2B5F02D02E63204251A792 /* UIView+ASFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = AA7786CD5CCDD845C23B809F89B0F145 /* UIView+ASFrame.m */; };
5C3BAFC4B23D36CC8A612612BF9172D8 /* UIColor+ASHex.h in Headers */ = {isa = PBXBuildFile; fileRef = D139327564577D43516FE1B4FE8B5E0E /* UIColor+ASHex.h */; settings = {ATTRIBUTES = (Public, ); }; };
6D6BC89B149EAC99E197552087566880 /* UIColor+ASCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = D170A50D0D04F61B3149D87A290562D3 /* UIColor+ASCommon.m */; };
7BD91043CA3082545056726B29BBBBDA /* UIView+ASFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A2DF43FA74C34A34961CE36E5B959A0 /* UIView+ASFrame.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BFFD53173565D09E6D11FF59D2A999E /* ASCocoaCategory-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B11B5728798790EDD32645C896D26A01 /* ASCocoaCategory-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
84F9250F6C1663F56F04C3ACAFF24B88 /* Pods-ASCocoaCategory_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D3685BC25CA47297C99C57734F578E0 /* Pods-ASCocoaCategory_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8FD35447613B19A8B156D4EC02FF1389 /* Pods-ASCocoaCategory_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E58A736C969F9CAB41E3CAF938797E2D /* Pods-ASCocoaCategory_Tests-dummy.m */; };
9DEC54C4EA280A5FEA9D79930884E41C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 973BE4DFCC535F9366CE474D5ECA2AA1 /* Foundation.framework */; };
AB15D95D1D448FF700D6E8B5 /* NSString+ASMD5.h in Headers */ = {isa = PBXBuildFile; fileRef = AB15D95B1D448FF700D6E8B5 /* NSString+ASMD5.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB15D95E1D448FF700D6E8B5 /* NSString+ASMD5.m in Sources */ = {isa = PBXBuildFile; fileRef = AB15D95C1D448FF700D6E8B5 /* NSString+ASMD5.m */; };
AB15F0211D93078A00013A88 /* NSBundle+ASLanguage.h in Headers */ = {isa = PBXBuildFile; fileRef = AB15F01F1D93078A00013A88 /* NSBundle+ASLanguage.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB15F0221D93078A00013A88 /* NSBundle+ASLanguage.m in Sources */ = {isa = PBXBuildFile; fileRef = AB15F0201D93078A00013A88 /* NSBundle+ASLanguage.m */; };
AB20125B1D1E74160089FDDD /* UIView+ASViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2012591D1E74160089FDDD /* UIView+ASViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB20125C1D1E74160089FDDD /* UIView+ASViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AB20125A1D1E74160089FDDD /* UIView+ASViewController.m */; };
AB26FA4A1CF8BA9000B7C0B9 /* UIView+ASAutoresizingMask.h in Headers */ = {isa = PBXBuildFile; fileRef = AB26FA491CF8BA9000B7C0B9 /* UIView+ASAutoresizingMask.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB26FA4F1CF8BAC300B7C0B9 /* UIScreen+ASSize.h in Headers */ = {isa = PBXBuildFile; fileRef = AB26FA4C1CF8BAC300B7C0B9 /* UIScreen+ASSize.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB26FA501CF8BAC300B7C0B9 /* UIWindow+ASMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = AB26FA4E1CF8BAC300B7C0B9 /* UIWindow+ASMacro.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB26FA521CF8BF9300B7C0B9 /* ASUIKitCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = AB26FA511CF8BBCE00B7C0B9 /* ASUIKitCategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB40AB9F1D4CB50200DE1043 /* UIImage+ASImageEffects.h in Headers */ = {isa = PBXBuildFile; fileRef = AB40AB9D1D4CB50200DE1043 /* UIImage+ASImageEffects.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB40ABA01D4CB50200DE1043 /* UIImage+ASImageEffects.m in Sources */ = {isa = PBXBuildFile; fileRef = AB40AB9E1D4CB50200DE1043 /* UIImage+ASImageEffects.m */; };
AB40ABA31D4CB5B500DE1043 /* UIView+ASBlurredImage.h in Headers */ = {isa = PBXBuildFile; fileRef = AB40ABA11D4CB5B500DE1043 /* UIView+ASBlurredImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB40ABA41D4CB5B500DE1043 /* UIView+ASBlurredImage.m in Sources */ = {isa = PBXBuildFile; fileRef = AB40ABA21D4CB5B500DE1043 /* UIView+ASBlurredImage.m */; };
AB5DC4F41CF0A659000AF2F1 /* NSData+ASBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4C51CF0A659000AF2F1 /* NSData+ASBase64.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC4F51CF0A659000AF2F1 /* NSData+ASBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4C61CF0A659000AF2F1 /* NSData+ASBase64.m */; };
AB5DC4F61CF0A659000AF2F1 /* NSString+ASBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4C71CF0A659000AF2F1 /* NSString+ASBase64.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC4F71CF0A659000AF2F1 /* NSString+ASBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4C81CF0A659000AF2F1 /* NSString+ASBase64.m */; };
AB5DC4F81CF0A659000AF2F1 /* NSData+ASHash.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4CA1CF0A659000AF2F1 /* NSData+ASHash.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC4F91CF0A659000AF2F1 /* NSData+ASHash.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4CB1CF0A659000AF2F1 /* NSData+ASHash.m */; };
AB5DC4FA1CF0A659000AF2F1 /* NSString+ASHash.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4CC1CF0A659000AF2F1 /* NSString+ASHash.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC4FB1CF0A659000AF2F1 /* NSString+ASHash.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4CD1CF0A659000AF2F1 /* NSString+ASHash.m */; };
AB5DC4FC1CF0A659000AF2F1 /* ASJSONDeserialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4D01CF0A659000AF2F1 /* ASJSONDeserialization.h */; };
AB5DC4FD1CF0A659000AF2F1 /* ASJSONDeserialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4D11CF0A659000AF2F1 /* ASJSONDeserialization.m */; };
AB5DC4FE1CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4D21CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC4FF1CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4D31CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.m */; };
AB5DC5001CF0A659000AF2F1 /* NSData+ASJSONDeserialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4D41CF0A659000AF2F1 /* NSData+ASJSONDeserialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5011CF0A659000AF2F1 /* NSData+ASJSONDeserialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4D51CF0A659000AF2F1 /* NSData+ASJSONDeserialization.m */; };
AB5DC5021CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4D61CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5031CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4D71CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.m */; };
AB5DC5041CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4D81CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5051CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4D91CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.m */; };
AB5DC5061CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4DA1CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5071CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4DB1CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.m */; };
AB5DC5081CF0A659000AF2F1 /* NSString+ASJSONDeserialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4DC1CF0A659000AF2F1 /* NSString+ASJSONDeserialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5091CF0A659000AF2F1 /* NSString+ASJSONDeserialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4DD1CF0A659000AF2F1 /* NSString+ASJSONDeserialization.m */; };
AB5DC50A1CF0A659000AF2F1 /* ASJSONSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4DF1CF0A659000AF2F1 /* ASJSONSerialization.h */; };
AB5DC50B1CF0A659000AF2F1 /* ASJSONSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4E01CF0A659000AF2F1 /* ASJSONSerialization.m */; };
AB5DC50C1CF0A659000AF2F1 /* NSArray+ASJSONSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4E11CF0A659000AF2F1 /* NSArray+ASJSONSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC50D1CF0A659000AF2F1 /* NSArray+ASJSONSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4E21CF0A659000AF2F1 /* NSArray+ASJSONSerialization.m */; };
AB5DC50E1CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4E31CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC50F1CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4E41CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.m */; };
AB5DC5101CF0A659000AF2F1 /* NSFileManager+ASPath.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4E61CF0A659000AF2F1 /* NSFileManager+ASPath.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5111CF0A659000AF2F1 /* NSFileManager+ASPath.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4E71CF0A659000AF2F1 /* NSFileManager+ASPath.m */; };
AB5DC5141CF0A659000AF2F1 /* NSString+ASNumeric.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4EB1CF0A659000AF2F1 /* NSString+ASNumeric.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5151CF0A659000AF2F1 /* NSString+ASNumeric.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4EC1CF0A659000AF2F1 /* NSString+ASNumeric.m */; };
AB5DC51A1CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC4F21CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC51B1CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC4F31CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.m */; };
AB5DC51D1CF0C418000AF2F1 /* ASFoundationCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC51C1CF0C418000AF2F1 /* ASFoundationCategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5251CF0C609000AF2F1 /* NSArray+ASSafeSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC51F1CF0C609000AF2F1 /* NSArray+ASSafeSelector.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5261CF0C609000AF2F1 /* NSArray+ASSafeSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC5201CF0C609000AF2F1 /* NSArray+ASSafeSelector.m */; };
AB5DC5271CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC5211CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5281CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC5221CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.m */; };
AB5DC5291CF0C609000AF2F1 /* NSObject+ASSafeSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC5231CF0C609000AF2F1 /* NSObject+ASSafeSelector.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC52A1CF0C609000AF2F1 /* NSObject+ASSafeSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC5241CF0C609000AF2F1 /* NSObject+ASSafeSelector.m */; };
AB5DC5321CF0C64E000AF2F1 /* NSArray+ASTypeConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC52C1CF0C64E000AF2F1 /* NSArray+ASTypeConvert.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5331CF0C64E000AF2F1 /* NSArray+ASTypeConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC52D1CF0C64E000AF2F1 /* NSArray+ASTypeConvert.m */; };
AB5DC5341CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC52E1CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5351CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC52F1CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.m */; };
AB5DC5361CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC5301CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5371CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC5311CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.m */; };
AB5DC5391CF0C8FF000AF2F1 /* NSString+ASMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC5381CF0C8FF000AF2F1 /* NSString+ASMacro.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC53E1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC53B1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC53F1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC53C1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.m */; };
AB5DC5401CF0D4F8000AF2F1 /* ASCoreGraphicsCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC53D1CF0D4F8000AF2F1 /* ASCoreGraphicsCategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5551CF0D979000AF2F1 /* Math+ASMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC5541CF0D979000AF2F1 /* Math+ASMacro.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC5591CF0D9A2000AF2F1 /* NSIndexPath+ASRange.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC5571CF0D9A2000AF2F1 /* NSIndexPath+ASRange.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC55A1CF0D9A2000AF2F1 /* NSIndexPath+ASRange.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5DC5581CF0D9A2000AF2F1 /* NSIndexPath+ASRange.m */; };
AB5DC55D1CF0DA16000AF2F1 /* NSBundle+ASMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC55C1CF0DA16000AF2F1 /* NSBundle+ASMacro.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB5DC55F1CF0DA6D000AF2F1 /* ASCommonMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5DC55E1CF0DA6D000AF2F1 /* ASCommonMacro.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB60BA611DCD08AC00EA8B8F /* PHAsset+ASImage.h in Headers */ = {isa = PBXBuildFile; fileRef = AB60BA5F1DCD08AC00EA8B8F /* PHAsset+ASImage.h */; };
AB60BA621DCD08AC00EA8B8F /* PHAsset+ASImage.m in Sources */ = {isa = PBXBuildFile; fileRef = AB60BA601DCD08AC00EA8B8F /* PHAsset+ASImage.m */; };
AB649D051D56E052009BDD37 /* UITextField+ASPlaceholderColor.h in Headers */ = {isa = PBXBuildFile; fileRef = AB649D031D56E052009BDD37 /* UITextField+ASPlaceholderColor.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB649D061D56E052009BDD37 /* UITextField+ASPlaceholderColor.m in Sources */ = {isa = PBXBuildFile; fileRef = AB649D041D56E052009BDD37 /* UITextField+ASPlaceholderColor.m */; };
AB64DE261E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = AB64DE241E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.h */; };
AB64DE271E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = AB64DE251E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.m */; };
AB92625D1DCC62E900A4F34B /* CGGeometryExtern.m in Sources */ = {isa = PBXBuildFile; fileRef = AB92625C1DCC62E900A4F34B /* CGGeometryExtern.m */; };
AB9CC17F1D5A4B1500DA17E0 /* UIView+ASConvertRect.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9CC17D1D5A4B1500DA17E0 /* UIView+ASConvertRect.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB9CC1801D5A4B1500DA17E0 /* UIView+ASConvertRect.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9CC17E1D5A4B1500DA17E0 /* UIView+ASConvertRect.m */; };
AB9CC18F1D5A595F00DA17E0 /* MKMapView+ASZoomLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9CC18D1D5A595F00DA17E0 /* MKMapView+ASZoomLevel.h */; settings = {ATTRIBUTES = (Public, ); }; };
AB9CC1901D5A595F00DA17E0 /* MKMapView+ASZoomLevel.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9CC18E1D5A595F00DA17E0 /* MKMapView+ASZoomLevel.m */; };
AB9CC1911D5A5B8F00DA17E0 /* ASMapKitCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9CC18C1D5A594C00DA17E0 /* ASMapKitCategory.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABA546DA1D45DA3F00A6D209 /* UIColor+ASMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA546D91D45DA3F00A6D209 /* UIColor+ASMacro.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC466F31D8D8F720037EDDF /* UIView+ASXibLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC466F11D8D8F720037EDDF /* UIView+ASXibLoader.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC466F41D8D8F720037EDDF /* UIView+ASXibLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC466F21D8D8F720037EDDF /* UIView+ASXibLoader.m */; };
ABC4BEBF1CF753AD00D552A6 /* UIColor+ASHSV.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEBD1CF753AD00D552A6 /* UIColor+ASHSV.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEC01CF753AD00D552A6 /* UIColor+ASHSV.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEBE1CF753AD00D552A6 /* UIColor+ASHSV.m */; };
ABC4BEC61CF7556A00D552A6 /* UIButton+ASState.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEC21CF7556A00D552A6 /* UIButton+ASState.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEC71CF7556A00D552A6 /* UIButton+ASState.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEC31CF7556A00D552A6 /* UIButton+ASState.m */; };
ABC4BEC81CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEC41CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEC91CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEC51CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.m */; };
ABC4BECC1CF75E7000D552A6 /* UIView+ASBounds.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BECA1CF75E7000D552A6 /* UIView+ASBounds.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BECD1CF75E7000D552A6 /* UIView+ASBounds.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BECB1CF75E7000D552A6 /* UIView+ASBounds.m */; };
ABC4BED21CF75FA900D552A6 /* UIView+ASAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BECE1CF75FA900D552A6 /* UIView+ASAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BED31CF75FA900D552A6 /* UIView+ASAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BECF1CF75FA900D552A6 /* UIView+ASAnimation.m */; };
ABC4BED41CF75FA900D552A6 /* UIView+ASAnimationOnOff.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BED01CF75FA900D552A6 /* UIView+ASAnimationOnOff.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BED51CF75FA900D552A6 /* UIView+ASAnimationOnOff.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BED11CF75FA900D552A6 /* UIView+ASAnimationOnOff.m */; };
ABC4BEDE1CF760F300D552A6 /* UIImage+ASDraw.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BED61CF760F300D552A6 /* UIImage+ASDraw.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEDF1CF760F300D552A6 /* UIImage+ASDraw.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BED71CF760F300D552A6 /* UIImage+ASDraw.m */; };
ABC4BEE01CF760F300D552A6 /* UIImage+ASDrawText.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BED81CF760F300D552A6 /* UIImage+ASDrawText.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEE11CF760F300D552A6 /* UIImage+ASDrawText.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BED91CF760F300D552A6 /* UIImage+ASDrawText.m */; };
ABC4BEE21CF760F300D552A6 /* UIImage+ASResizable.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEDA1CF760F300D552A6 /* UIImage+ASResizable.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEE31CF760F300D552A6 /* UIImage+ASResizable.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEDB1CF760F300D552A6 /* UIImage+ASResizable.m */; };
ABC4BEE41CF760F300D552A6 /* UIImage+ASTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEDC1CF760F300D552A6 /* UIImage+ASTransform.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEE51CF760F300D552A6 /* UIImage+ASTransform.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEDD1CF760F300D552A6 /* UIImage+ASTransform.m */; };
ABC4BEE91CF7614300D552A6 /* UIDevice+ASVersionCached.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEE71CF7614300D552A6 /* UIDevice+ASVersionCached.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEEA1CF7614300D552A6 /* UIDevice+ASVersionCached.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEE81CF7614300D552A6 /* UIDevice+ASVersionCached.m */; };
ABC4BEEC1CF7614E00D552A6 /* UIGeometryExtends.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEEB1CF7614E00D552A6 /* UIGeometryExtends.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEF61CF7615B00D552A6 /* UILabel+ASFont.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEEE1CF7615B00D552A6 /* UILabel+ASFont.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEF71CF7615B00D552A6 /* UILabel+ASFont.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEEF1CF7615B00D552A6 /* UILabel+ASFont.m */; };
ABC4BEF81CF7615B00D552A6 /* UITextField+ASFont.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEF01CF7615B00D552A6 /* UITextField+ASFont.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEF91CF7615B00D552A6 /* UITextField+ASFont.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEF11CF7615B00D552A6 /* UITextField+ASFont.m */; };
ABC4BEFA1CF7615B00D552A6 /* UITextView+ASFont.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEF21CF7615B00D552A6 /* UITextView+ASFont.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC4BEFB1CF7615B00D552A6 /* UITextView+ASFont.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEF31CF7615B00D552A6 /* UITextView+ASFont.m */; };
ABC4BEFC1CF7615B00D552A6 /* UIView+ASFont.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEF41CF7615B00D552A6 /* UIView+ASFont.h */; };
ABC4BEFD1CF7615B00D552A6 /* UIView+ASFont.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC4BEF51CF7615B00D552A6 /* UIView+ASFont.m */; };
ABC4BEFF1CF7620C00D552A6 /* UIDevice+ASMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC4BEFE1CF7620C00D552A6 /* UIDevice+ASMacro.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABCED9001DA10C10007D485B /* NSBundle+ASMainBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = ABCED8FE1DA10C10007D485B /* NSBundle+ASMainBundle.h */; };
ABCED9011DA10C10007D485B /* NSBundle+ASMainBundle.m in Sources */ = {isa = PBXBuildFile; fileRef = ABCED8FF1DA10C10007D485B /* NSBundle+ASMainBundle.m */; };
ABFBFA651DCE6058000E6469 /* PHAssetCollection+ASAlbum.h in Headers */ = {isa = PBXBuildFile; fileRef = ABFBFA631DCE6058000E6469 /* PHAssetCollection+ASAlbum.h */; };
ABFBFA661DCE6058000E6469 /* PHAssetCollection+ASAlbum.m in Sources */ = {isa = PBXBuildFile; fileRef = ABFBFA641DCE6058000E6469 /* PHAssetCollection+ASAlbum.m */; };
B704BCB6D711B008036069CB2CB13DD8 /* UIColor+ASHex.m in Sources */ = {isa = PBXBuildFile; fileRef = BEF6B6F19663FFD7471F8B992D5C7563 /* UIColor+ASHex.m */; };
B92AC83D5405A1122D987D95865DFED1 /* UIImage+ASColor.h in Headers */ = {isa = PBXBuildFile; fileRef = B338D22DE8FE2B146D37897A142EA2AA /* UIImage+ASColor.h */; settings = {ATTRIBUTES = (Public, ); }; };
C700FE34603BF7230E26BAD4B28CF5F3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 973BE4DFCC535F9366CE474D5ECA2AA1 /* Foundation.framework */; };
C81025699AC6A5F1A781CFC0E3957499 /* UIView+ASCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = C48F8B0548047B48313B653FD0CDCAAA /* UIView+ASCommon.h */; settings = {ATTRIBUTES = (Public, ); }; };
EBBC4DD593EB97EB03E2E5267DA0878E /* Pods-ASCocoaCategory_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C10C4806B256EA18EF9C147C3B2EF58B /* Pods-ASCocoaCategory_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F7A9C6A491685D6CE7411CF978D9E43E /* NSDictionary+ASCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 606007A6659D1D9C4E101B67672AFDB0 /* NSDictionary+ASCommon.m */; };
FD19A2A2562A024AD84E017DFC9F7E6D /* UIColor+ASCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = D54B84A7573CB1284A7AD70794BBAA02 /* UIColor+ASCommon.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
DBA09749AE708657E3691F97075848B3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DDC91647F6B8BA0A3C3CFB0AC8865BB8;
remoteInfo = ASCocoaCategory;
};
DF065C919EA0B51AAC11C2B00FA174C9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DDC91647F6B8BA0A3C3CFB0AC8865BB8;
remoteInfo = ASCocoaCategory;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
025B03967A46862CF9C0EEA95F662B0B /* Pods-ASCocoaCategory_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ASCocoaCategory_Tests-frameworks.sh"; sourceTree = "<group>"; };
0CB78450191B59285BADFDE39044DC56 /* UIImage+ASColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ASColor.m"; sourceTree = "<group>"; };
0D045B9C5398D5142955B1AFC42D5DC1 /* Pods_ASCocoaCategory_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ASCocoaCategory_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2521D6F3E9497D1B54BD845FC8EF888B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2A2DF43FA74C34A34961CE36E5B959A0 /* UIView+ASFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+ASFrame.h"; sourceTree = "<group>"; };
2D5A46D98F8DBCD0CE4A23E15E0B0E02 /* Pods-ASCocoaCategory_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ASCocoaCategory_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
3C3B5A1EA047A4BAE4DDE36C8F0E469E /* Pods-ASCocoaCategory_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ASCocoaCategory_Example-dummy.m"; sourceTree = "<group>"; };
47020B0C6FD314B895E94070FB9C4469 /* Pods_ASCocoaCategory_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ASCocoaCategory_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4E3E78644FBC3E3BE0FB06F4BB122071 /* UIView+ASBackground.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASBackground.m"; sourceTree = "<group>"; };
53824DD0B40CEC06A95EC63E22BAC3D9 /* Pods-ASCocoaCategory_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ASCocoaCategory_Tests.release.xcconfig"; sourceTree = "<group>"; };
5488E64910BAB02CA8CE29F989E584E5 /* Pods-ASCocoaCategory_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ASCocoaCategory_Example.debug.xcconfig"; sourceTree = "<group>"; };
5FF744AF6DAF92242D3D897590C7092A /* Pods-ASCocoaCategory_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ASCocoaCategory_Example-resources.sh"; sourceTree = "<group>"; };
606007A6659D1D9C4E101B67672AFDB0 /* NSDictionary+ASCommon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+ASCommon.m"; sourceTree = "<group>"; };
63E4D363DC448426FD428D92D53C14C4 /* UIView+ASCommon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASCommon.m"; sourceTree = "<group>"; };
69D28364A9C556CFDC41D54BD0A2D652 /* ASCocoaCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ASCocoaCategory.h; sourceTree = "<group>"; };
74E144F05F9856E4CBFF18AB59276609 /* ASCocoaCategory-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ASCocoaCategory-prefix.pch"; sourceTree = "<group>"; };
77B68D23E6102A1CEF700B99A16CFEF6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7930FE2DF72CECAC71F482799A130F67 /* ASCocoaCategory-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ASCocoaCategory-Private.xcconfig"; sourceTree = "<group>"; };
7D175BA4CE7D0CC2B8FD79E7F0AC5F9C /* ASCocoaCategory-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ASCocoaCategory-dummy.m"; sourceTree = "<group>"; };
7F5B94A9603655A64CC248FA646D82C3 /* Pods-ASCocoaCategory_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ASCocoaCategory_Tests.modulemap"; sourceTree = "<group>"; };
86BB4B49B6E46FFA758DAEF63705F012 /* NSDictionary+ASCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+ASCommon.h"; sourceTree = "<group>"; };
973BE4DFCC535F9366CE474D5ECA2AA1 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
9770527DD4A056A30CCEABC3459DC70B /* UIView+ASBackground.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+ASBackground.h"; sourceTree = "<group>"; };
9D3685BC25CA47297C99C57734F578E0 /* Pods-ASCocoaCategory_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ASCocoaCategory_Example-umbrella.h"; sourceTree = "<group>"; };
9D3DD806A95EFEE60D1A01AB9832B8E7 /* Pods-ASCocoaCategory_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ASCocoaCategory_Example.modulemap"; sourceTree = "<group>"; };
A4260CF45DFB98588EF0D4A456875FE0 /* Pods-ASCocoaCategory_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ASCocoaCategory_Example.release.xcconfig"; sourceTree = "<group>"; };
A671FF161871F6999CDFFF10A13723F6 /* Pods-ASCocoaCategory_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ASCocoaCategory_Example-acknowledgements.plist"; sourceTree = "<group>"; };
AA7786CD5CCDD845C23B809F89B0F145 /* UIView+ASFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASFrame.m"; sourceTree = "<group>"; };
AB15D95B1D448FF700D6E8B5 /* NSString+ASMD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+ASMD5.h"; sourceTree = "<group>"; };
AB15D95C1D448FF700D6E8B5 /* NSString+ASMD5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+ASMD5.m"; sourceTree = "<group>"; };
AB15F01F1D93078A00013A88 /* NSBundle+ASLanguage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+ASLanguage.h"; sourceTree = "<group>"; };
AB15F0201D93078A00013A88 /* NSBundle+ASLanguage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+ASLanguage.m"; sourceTree = "<group>"; };
AB2012591D1E74160089FDDD /* UIView+ASViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASViewController.h"; sourceTree = "<group>"; };
AB20125A1D1E74160089FDDD /* UIView+ASViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASViewController.m"; sourceTree = "<group>"; };
AB26FA491CF8BA9000B7C0B9 /* UIView+ASAutoresizingMask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASAutoresizingMask.h"; sourceTree = "<group>"; };
AB26FA4C1CF8BAC300B7C0B9 /* UIScreen+ASSize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+ASSize.h"; sourceTree = "<group>"; };
AB26FA4E1CF8BAC300B7C0B9 /* UIWindow+ASMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+ASMacro.h"; sourceTree = "<group>"; };
AB26FA511CF8BBCE00B7C0B9 /* ASUIKitCategory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUIKitCategory.h; sourceTree = "<group>"; };
AB40AB9D1D4CB50200DE1043 /* UIImage+ASImageEffects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ASImageEffects.h"; sourceTree = "<group>"; };
AB40AB9E1D4CB50200DE1043 /* UIImage+ASImageEffects.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ASImageEffects.m"; sourceTree = "<group>"; };
AB40ABA11D4CB5B500DE1043 /* UIView+ASBlurredImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASBlurredImage.h"; sourceTree = "<group>"; };
AB40ABA21D4CB5B500DE1043 /* UIView+ASBlurredImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASBlurredImage.m"; sourceTree = "<group>"; };
AB5DC4C51CF0A659000AF2F1 /* NSData+ASBase64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ASBase64.h"; sourceTree = "<group>"; };
AB5DC4C61CF0A659000AF2F1 /* NSData+ASBase64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ASBase64.m"; sourceTree = "<group>"; };
AB5DC4C71CF0A659000AF2F1 /* NSString+ASBase64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+ASBase64.h"; sourceTree = "<group>"; };
AB5DC4C81CF0A659000AF2F1 /* NSString+ASBase64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+ASBase64.m"; sourceTree = "<group>"; };
AB5DC4CA1CF0A659000AF2F1 /* NSData+ASHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ASHash.h"; sourceTree = "<group>"; };
AB5DC4CB1CF0A659000AF2F1 /* NSData+ASHash.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSData+ASHash.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
AB5DC4CC1CF0A659000AF2F1 /* NSString+ASHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+ASHash.h"; sourceTree = "<group>"; };
AB5DC4CD1CF0A659000AF2F1 /* NSString+ASHash.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+ASHash.m"; sourceTree = "<group>"; };
AB5DC4D01CF0A659000AF2F1 /* ASJSONDeserialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASJSONDeserialization.h; sourceTree = "<group>"; };
AB5DC4D11CF0A659000AF2F1 /* ASJSONDeserialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASJSONDeserialization.m; sourceTree = "<group>"; };
AB5DC4D21CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+ASJSONDeserialization.h"; sourceTree = "<group>"; };
AB5DC4D31CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+ASJSONDeserialization.m"; sourceTree = "<group>"; };
AB5DC4D41CF0A659000AF2F1 /* NSData+ASJSONDeserialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "NSData+ASJSONDeserialization.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
AB5DC4D51CF0A659000AF2F1 /* NSData+ASJSONDeserialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSData+ASJSONDeserialization.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
AB5DC4D61CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "NSDictionary+ASJSONDeserialization.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
AB5DC4D71CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSDictionary+ASJSONDeserialization.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
AB5DC4D81CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "NSMutableArray+ASJSONDeserialization.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
AB5DC4D91CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSMutableArray+ASJSONDeserialization.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
AB5DC4DA1CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "NSMutableDictionary+ASJSONDeserialization.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
AB5DC4DB1CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSMutableDictionary+ASJSONDeserialization.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
AB5DC4DC1CF0A659000AF2F1 /* NSString+ASJSONDeserialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "NSString+ASJSONDeserialization.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
AB5DC4DD1CF0A659000AF2F1 /* NSString+ASJSONDeserialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSString+ASJSONDeserialization.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
AB5DC4DF1CF0A659000AF2F1 /* ASJSONSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASJSONSerialization.h; sourceTree = "<group>"; };
AB5DC4E01CF0A659000AF2F1 /* ASJSONSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASJSONSerialization.m; sourceTree = "<group>"; };
AB5DC4E11CF0A659000AF2F1 /* NSArray+ASJSONSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "NSArray+ASJSONSerialization.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
AB5DC4E21CF0A659000AF2F1 /* NSArray+ASJSONSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSArray+ASJSONSerialization.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
AB5DC4E31CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = "NSDictionary+ASJSONSerialization.h"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
AB5DC4E41CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = "NSDictionary+ASJSONSerialization.m"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
AB5DC4E61CF0A659000AF2F1 /* NSFileManager+ASPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSFileManager+ASPath.h"; sourceTree = "<group>"; };
AB5DC4E71CF0A659000AF2F1 /* NSFileManager+ASPath.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSFileManager+ASPath.m"; sourceTree = "<group>"; };
AB5DC4EB1CF0A659000AF2F1 /* NSString+ASNumeric.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+ASNumeric.h"; sourceTree = "<group>"; };
AB5DC4EC1CF0A659000AF2F1 /* NSString+ASNumeric.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+ASNumeric.m"; sourceTree = "<group>"; };
AB5DC4F21CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ASPropertyAttributes.h"; sourceTree = "<group>"; };
AB5DC4F31CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ASPropertyAttributes.m"; sourceTree = "<group>"; };
AB5DC51C1CF0C418000AF2F1 /* ASFoundationCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASFoundationCategory.h; sourceTree = "<group>"; };
AB5DC51F1CF0C609000AF2F1 /* NSArray+ASSafeSelector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+ASSafeSelector.h"; sourceTree = "<group>"; };
AB5DC5201CF0C609000AF2F1 /* NSArray+ASSafeSelector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+ASSafeSelector.m"; sourceTree = "<group>"; };
AB5DC5211CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+ASSafeSelector.h"; sourceTree = "<group>"; };
AB5DC5221CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+ASSafeSelector.m"; sourceTree = "<group>"; };
AB5DC5231CF0C609000AF2F1 /* NSObject+ASSafeSelector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ASSafeSelector.h"; sourceTree = "<group>"; };
AB5DC5241CF0C609000AF2F1 /* NSObject+ASSafeSelector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ASSafeSelector.m"; sourceTree = "<group>"; };
AB5DC52C1CF0C64E000AF2F1 /* NSArray+ASTypeConvert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+ASTypeConvert.h"; sourceTree = "<group>"; };
AB5DC52D1CF0C64E000AF2F1 /* NSArray+ASTypeConvert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+ASTypeConvert.m"; sourceTree = "<group>"; };
AB5DC52E1CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+ASTypeConvert.h"; sourceTree = "<group>"; };
AB5DC52F1CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+ASTypeConvert.m"; sourceTree = "<group>"; };
AB5DC5301CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+ASTypeConvert.h"; sourceTree = "<group>"; };
AB5DC5311CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+ASTypeConvert.m"; sourceTree = "<group>"; };
AB5DC5381CF0C8FF000AF2F1 /* NSString+ASMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+ASMacro.h"; sourceTree = "<group>"; };
AB5DC53B1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CGAffineTransform+UIInterfaceOrientation.h"; sourceTree = "<group>"; };
AB5DC53C1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CGAffineTransform+UIInterfaceOrientation.m"; sourceTree = "<group>"; };
AB5DC53D1CF0D4F8000AF2F1 /* ASCoreGraphicsCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASCoreGraphicsCategory.h; sourceTree = "<group>"; };
AB5DC5541CF0D979000AF2F1 /* Math+ASMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Math+ASMacro.h"; sourceTree = "<group>"; };
AB5DC5571CF0D9A2000AF2F1 /* NSIndexPath+ASRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexPath+ASRange.h"; sourceTree = "<group>"; };
AB5DC5581CF0D9A2000AF2F1 /* NSIndexPath+ASRange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexPath+ASRange.m"; sourceTree = "<group>"; };
AB5DC55C1CF0DA16000AF2F1 /* NSBundle+ASMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+ASMacro.h"; sourceTree = "<group>"; };
AB5DC55E1CF0DA6D000AF2F1 /* ASCommonMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASCommonMacro.h; sourceTree = "<group>"; };
AB60BA5F1DCD08AC00EA8B8F /* PHAsset+ASImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAsset+ASImage.h"; sourceTree = "<group>"; };
AB60BA601DCD08AC00EA8B8F /* PHAsset+ASImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAsset+ASImage.m"; sourceTree = "<group>"; };
AB60BA631DCD097A00EA8B8F /* PhotosCategory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PhotosCategory.h; sourceTree = "<group>"; };
AB649D031D56E052009BDD37 /* UITextField+ASPlaceholderColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextField+ASPlaceholderColor.h"; sourceTree = "<group>"; };
AB649D041D56E052009BDD37 /* UITextField+ASPlaceholderColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextField+ASPlaceholderColor.m"; sourceTree = "<group>"; };
AB64DE241E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UISearchBar+ASPrivateProperty.h"; sourceTree = "<group>"; };
AB64DE251E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UISearchBar+ASPrivateProperty.m"; sourceTree = "<group>"; };
AB92625B1DCC625B00A4F34B /* CGGeometryExtern.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CGGeometryExtern.h; sourceTree = "<group>"; };
AB92625C1DCC62E900A4F34B /* CGGeometryExtern.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CGGeometryExtern.m; sourceTree = "<group>"; };
AB9CC17D1D5A4B1500DA17E0 /* UIView+ASConvertRect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASConvertRect.h"; sourceTree = "<group>"; };
AB9CC17E1D5A4B1500DA17E0 /* UIView+ASConvertRect.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASConvertRect.m"; sourceTree = "<group>"; };
AB9CC18C1D5A594C00DA17E0 /* ASMapKitCategory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMapKitCategory.h; sourceTree = "<group>"; };
AB9CC18D1D5A595F00DA17E0 /* MKMapView+ASZoomLevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MKMapView+ASZoomLevel.h"; sourceTree = "<group>"; };
AB9CC18E1D5A595F00DA17E0 /* MKMapView+ASZoomLevel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MKMapView+ASZoomLevel.m"; sourceTree = "<group>"; };
ABA546D91D45DA3F00A6D209 /* UIColor+ASMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+ASMacro.h"; sourceTree = "<group>"; };
ABC466F11D8D8F720037EDDF /* UIView+ASXibLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASXibLoader.h"; sourceTree = "<group>"; };
ABC466F21D8D8F720037EDDF /* UIView+ASXibLoader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASXibLoader.m"; sourceTree = "<group>"; };
ABC4BEBD1CF753AD00D552A6 /* UIColor+ASHSV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+ASHSV.h"; sourceTree = "<group>"; };
ABC4BEBE1CF753AD00D552A6 /* UIColor+ASHSV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+ASHSV.m"; sourceTree = "<group>"; };
ABC4BEC21CF7556A00D552A6 /* UIButton+ASState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+ASState.h"; sourceTree = "<group>"; };
ABC4BEC31CF7556A00D552A6 /* UIButton+ASState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+ASState.m"; sourceTree = "<group>"; };
ABC4BEC41CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+ASBackgroundColorForState.h"; sourceTree = "<group>"; };
ABC4BEC51CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+ASBackgroundColorForState.m"; sourceTree = "<group>"; };
ABC4BECA1CF75E7000D552A6 /* UIView+ASBounds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASBounds.h"; sourceTree = "<group>"; };
ABC4BECB1CF75E7000D552A6 /* UIView+ASBounds.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASBounds.m"; sourceTree = "<group>"; };
ABC4BECE1CF75FA900D552A6 /* UIView+ASAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASAnimation.h"; sourceTree = "<group>"; };
ABC4BECF1CF75FA900D552A6 /* UIView+ASAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASAnimation.m"; sourceTree = "<group>"; };
ABC4BED01CF75FA900D552A6 /* UIView+ASAnimationOnOff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASAnimationOnOff.h"; sourceTree = "<group>"; };
ABC4BED11CF75FA900D552A6 /* UIView+ASAnimationOnOff.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASAnimationOnOff.m"; sourceTree = "<group>"; };
ABC4BED61CF760F300D552A6 /* UIImage+ASDraw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ASDraw.h"; sourceTree = "<group>"; };
ABC4BED71CF760F300D552A6 /* UIImage+ASDraw.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ASDraw.m"; sourceTree = "<group>"; };
ABC4BED81CF760F300D552A6 /* UIImage+ASDrawText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ASDrawText.h"; sourceTree = "<group>"; };
ABC4BED91CF760F300D552A6 /* UIImage+ASDrawText.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ASDrawText.m"; sourceTree = "<group>"; };
ABC4BEDA1CF760F300D552A6 /* UIImage+ASResizable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ASResizable.h"; sourceTree = "<group>"; };
ABC4BEDB1CF760F300D552A6 /* UIImage+ASResizable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ASResizable.m"; sourceTree = "<group>"; };
ABC4BEDC1CF760F300D552A6 /* UIImage+ASTransform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ASTransform.h"; sourceTree = "<group>"; };
ABC4BEDD1CF760F300D552A6 /* UIImage+ASTransform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ASTransform.m"; sourceTree = "<group>"; };
ABC4BEE71CF7614300D552A6 /* UIDevice+ASVersionCached.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+ASVersionCached.h"; sourceTree = "<group>"; };
ABC4BEE81CF7614300D552A6 /* UIDevice+ASVersionCached.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+ASVersionCached.m"; sourceTree = "<group>"; };
ABC4BEEB1CF7614E00D552A6 /* UIGeometryExtends.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIGeometryExtends.h; sourceTree = "<group>"; };
ABC4BEEE1CF7615B00D552A6 /* UILabel+ASFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+ASFont.h"; sourceTree = "<group>"; };
ABC4BEEF1CF7615B00D552A6 /* UILabel+ASFont.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+ASFont.m"; sourceTree = "<group>"; };
ABC4BEF01CF7615B00D552A6 /* UITextField+ASFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextField+ASFont.h"; sourceTree = "<group>"; };
ABC4BEF11CF7615B00D552A6 /* UITextField+ASFont.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextField+ASFont.m"; sourceTree = "<group>"; };
ABC4BEF21CF7615B00D552A6 /* UITextView+ASFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ASFont.h"; sourceTree = "<group>"; };
ABC4BEF31CF7615B00D552A6 /* UITextView+ASFont.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ASFont.m"; sourceTree = "<group>"; };
ABC4BEF41CF7615B00D552A6 /* UIView+ASFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ASFont.h"; sourceTree = "<group>"; };
ABC4BEF51CF7615B00D552A6 /* UIView+ASFont.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ASFont.m"; sourceTree = "<group>"; };
ABC4BEFE1CF7620C00D552A6 /* UIDevice+ASMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+ASMacro.h"; sourceTree = "<group>"; };
ABCED8FE1DA10C10007D485B /* NSBundle+ASMainBundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+ASMainBundle.h"; sourceTree = "<group>"; };
ABCED8FF1DA10C10007D485B /* NSBundle+ASMainBundle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+ASMainBundle.m"; sourceTree = "<group>"; };
ABFBFA631DCE6058000E6469 /* PHAssetCollection+ASAlbum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PHAssetCollection+ASAlbum.h"; sourceTree = "<group>"; };
ABFBFA641DCE6058000E6469 /* PHAssetCollection+ASAlbum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PHAssetCollection+ASAlbum.m"; sourceTree = "<group>"; };
B11B5728798790EDD32645C896D26A01 /* ASCocoaCategory-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ASCocoaCategory-umbrella.h"; sourceTree = "<group>"; };
B338D22DE8FE2B146D37897A142EA2AA /* UIImage+ASColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+ASColor.h"; sourceTree = "<group>"; };
BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
BEF6B6F19663FFD7471F8B992D5C7563 /* UIColor+ASHex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+ASHex.m"; sourceTree = "<group>"; };
C08D672DFAA8E3FC6859FCFC775AEA0D /* Pods-ASCocoaCategory_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ASCocoaCategory_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
C10C4806B256EA18EF9C147C3B2EF58B /* Pods-ASCocoaCategory_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ASCocoaCategory_Tests-umbrella.h"; sourceTree = "<group>"; };
C1835F2BDD07A4FA072E5340213F5533 /* Pods-ASCocoaCategory_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ASCocoaCategory_Example-frameworks.sh"; sourceTree = "<group>"; };
C23F1D2C26D6E4DAF1A1410CDD4F8B6D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C48F8B0548047B48313B653FD0CDCAAA /* UIView+ASCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+ASCommon.h"; sourceTree = "<group>"; };
C5D55AFE9A1965C8FC43F054EF6EED87 /* Pods-ASCocoaCategory_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ASCocoaCategory_Tests.debug.xcconfig"; sourceTree = "<group>"; };
CAAF3F56C63B9BDECB4ABA21AA84A02A /* ASCocoaCategory.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ASCocoaCategory.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D139327564577D43516FE1B4FE8B5E0E /* UIColor+ASHex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+ASHex.h"; sourceTree = "<group>"; };
D170A50D0D04F61B3149D87A290562D3 /* UIColor+ASCommon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+ASCommon.m"; sourceTree = "<group>"; };
D54B84A7573CB1284A7AD70794BBAA02 /* UIColor+ASCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+ASCommon.h"; sourceTree = "<group>"; };
D7E21D9597424A5344C529B41245D006 /* ASCocoaCategory.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = ASCocoaCategory.modulemap; sourceTree = "<group>"; };
DCC968FCF5CDD90E77B73C12B3EE2FAD /* Pods-ASCocoaCategory_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ASCocoaCategory_Tests-resources.sh"; sourceTree = "<group>"; };
E58A736C969F9CAB41E3CAF938797E2D /* Pods-ASCocoaCategory_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ASCocoaCategory_Tests-dummy.m"; sourceTree = "<group>"; };
E5ED7F9385B8D23B23E91E8289722864 /* ASCocoaCategory.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ASCocoaCategory.xcconfig; sourceTree = "<group>"; };
FA0B562854F6DEA3F952B6738F3AAE35 /* Pods-ASCocoaCategory_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ASCocoaCategory_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
9425127C24DED8D9A5BA54075E10A414 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C700FE34603BF7230E26BAD4B28CF5F3 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A3F7A70884BD88DB9EE4639074860BAB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9DEC54C4EA280A5FEA9D79930884E41C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A7C810384EA09264F2E6FA1955FD4563 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
3A5456A01638A1F1FD1355D5CF645ACF /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0B218A0E5D4E173D175511B05C1F7BD9 /* Pods-ASCocoaCategory_Example */ = {
isa = PBXGroup;
children = (
2521D6F3E9497D1B54BD845FC8EF888B /* Info.plist */,
9D3DD806A95EFEE60D1A01AB9832B8E7 /* Pods-ASCocoaCategory_Example.modulemap */,
2D5A46D98F8DBCD0CE4A23E15E0B0E02 /* Pods-ASCocoaCategory_Example-acknowledgements.markdown */,
A671FF161871F6999CDFFF10A13723F6 /* Pods-ASCocoaCategory_Example-acknowledgements.plist */,
3C3B5A1EA047A4BAE4DDE36C8F0E469E /* Pods-ASCocoaCategory_Example-dummy.m */,
C1835F2BDD07A4FA072E5340213F5533 /* Pods-ASCocoaCategory_Example-frameworks.sh */,
5FF744AF6DAF92242D3D897590C7092A /* Pods-ASCocoaCategory_Example-resources.sh */,
9D3685BC25CA47297C99C57734F578E0 /* Pods-ASCocoaCategory_Example-umbrella.h */,
5488E64910BAB02CA8CE29F989E584E5 /* Pods-ASCocoaCategory_Example.debug.xcconfig */,
A4260CF45DFB98588EF0D4A456875FE0 /* Pods-ASCocoaCategory_Example.release.xcconfig */,
);
name = "Pods-ASCocoaCategory_Example";
path = "Target Support Files/Pods-ASCocoaCategory_Example";
sourceTree = "<group>";
};
12EF2F04F0A4A3B088709CA418D51FA8 /* UIView */ = {
isa = PBXGroup;
children = (
AB40ABA11D4CB5B500DE1043 /* UIView+ASBlurredImage.h */,
AB40ABA21D4CB5B500DE1043 /* UIView+ASBlurredImage.m */,
AB26FA491CF8BA9000B7C0B9 /* UIView+ASAutoresizingMask.h */,
9770527DD4A056A30CCEABC3459DC70B /* UIView+ASBackground.h */,
4E3E78644FBC3E3BE0FB06F4BB122071 /* UIView+ASBackground.m */,
C48F8B0548047B48313B653FD0CDCAAA /* UIView+ASCommon.h */,
63E4D363DC448426FD428D92D53C14C4 /* UIView+ASCommon.m */,
2A2DF43FA74C34A34961CE36E5B959A0 /* UIView+ASFrame.h */,
AA7786CD5CCDD845C23B809F89B0F145 /* UIView+ASFrame.m */,
ABC4BECA1CF75E7000D552A6 /* UIView+ASBounds.h */,
ABC4BECB1CF75E7000D552A6 /* UIView+ASBounds.m */,
ABC4BECE1CF75FA900D552A6 /* UIView+ASAnimation.h */,
ABC4BECF1CF75FA900D552A6 /* UIView+ASAnimation.m */,
ABC4BED01CF75FA900D552A6 /* UIView+ASAnimationOnOff.h */,
ABC4BED11CF75FA900D552A6 /* UIView+ASAnimationOnOff.m */,
AB2012591D1E74160089FDDD /* UIView+ASViewController.h */,
AB20125A1D1E74160089FDDD /* UIView+ASViewController.m */,
AB9CC17D1D5A4B1500DA17E0 /* UIView+ASConvertRect.h */,
AB9CC17E1D5A4B1500DA17E0 /* UIView+ASConvertRect.m */,
ABC466F11D8D8F720037EDDF /* UIView+ASXibLoader.h */,
ABC466F21D8D8F720037EDDF /* UIView+ASXibLoader.m */,
);
path = UIView;
sourceTree = "<group>";
};
2508CFB7EEECFEEEBF132DEF25C15E09 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
0B218A0E5D4E173D175511B05C1F7BD9 /* Pods-ASCocoaCategory_Example */,
2EC53C56DDEFC45FC74012B7B12AB55A /* Pods-ASCocoaCategory_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
2EC53C56DDEFC45FC74012B7B12AB55A /* Pods-ASCocoaCategory_Tests */ = {
isa = PBXGroup;
children = (
77B68D23E6102A1CEF700B99A16CFEF6 /* Info.plist */,
7F5B94A9603655A64CC248FA646D82C3 /* Pods-ASCocoaCategory_Tests.modulemap */,
FA0B562854F6DEA3F952B6738F3AAE35 /* Pods-ASCocoaCategory_Tests-acknowledgements.markdown */,
C08D672DFAA8E3FC6859FCFC775AEA0D /* Pods-ASCocoaCategory_Tests-acknowledgements.plist */,
E58A736C969F9CAB41E3CAF938797E2D /* Pods-ASCocoaCategory_Tests-dummy.m */,
025B03967A46862CF9C0EEA95F662B0B /* Pods-ASCocoaCategory_Tests-frameworks.sh */,
DCC968FCF5CDD90E77B73C12B3EE2FAD /* Pods-ASCocoaCategory_Tests-resources.sh */,
C10C4806B256EA18EF9C147C3B2EF58B /* Pods-ASCocoaCategory_Tests-umbrella.h */,
C5D55AFE9A1965C8FC43F054EF6EED87 /* Pods-ASCocoaCategory_Tests.debug.xcconfig */,
53824DD0B40CEC06A95EC63E22BAC3D9 /* Pods-ASCocoaCategory_Tests.release.xcconfig */,
);
name = "Pods-ASCocoaCategory_Tests";
path = "Target Support Files/Pods-ASCocoaCategory_Tests";
sourceTree = "<group>";
};
4516C9026E69320D46954D8987F24093 /* NSDictionary */ = {
isa = PBXGroup;
children = (
86BB4B49B6E46FFA758DAEF63705F012 /* NSDictionary+ASCommon.h */,
606007A6659D1D9C4E101B67672AFDB0 /* NSDictionary+ASCommon.m */,
);
path = NSDictionary;
sourceTree = "<group>";
};
47D143D46034FF799B6F8883790EF995 /* ASCocoaCategory */ = {
isa = PBXGroup;
children = (
FE8E38EEB7A4803F114997EFA18B0B69 /* Pod */,
8FC0108369B849C1FB28A4FA83CE7E4F /* Support Files */,
);
name = ASCocoaCategory;
path = ../..;
sourceTree = "<group>";
};
53F661C0CA7190D2CF05023FB33D61E4 /* iOS */ = {
isa = PBXGroup;
children = (
973BE4DFCC535F9366CE474D5ECA2AA1 /* Foundation.framework */,
);
name = iOS;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */,
F0697C034E12CFD69FB1A4996AC55E28 /* Development Pods */,
BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */,
CCA510CFBEA2D207524CDA0D73C3B561 /* Products */,
2508CFB7EEECFEEEBF132DEF25C15E09 /* Targets Support Files */,
);
sourceTree = "<group>";
};
8E9C4C1937225B295A5109EAEBE6D4F3 /* UIColor */ = {
isa = PBXGroup;
children = (
ABA546D91D45DA3F00A6D209 /* UIColor+ASMacro.h */,
D54B84A7573CB1284A7AD70794BBAA02 /* UIColor+ASCommon.h */,
D170A50D0D04F61B3149D87A290562D3 /* UIColor+ASCommon.m */,
D139327564577D43516FE1B4FE8B5E0E /* UIColor+ASHex.h */,
BEF6B6F19663FFD7471F8B992D5C7563 /* UIColor+ASHex.m */,
ABC4BEBD1CF753AD00D552A6 /* UIColor+ASHSV.h */,
ABC4BEBE1CF753AD00D552A6 /* UIColor+ASHSV.m */,
);
path = UIColor;
sourceTree = "<group>";
};
8FC0108369B849C1FB28A4FA83CE7E4F /* Support Files */ = {
isa = PBXGroup;
children = (
D7E21D9597424A5344C529B41245D006 /* ASCocoaCategory.modulemap */,
E5ED7F9385B8D23B23E91E8289722864 /* ASCocoaCategory.xcconfig */,
7930FE2DF72CECAC71F482799A130F67 /* ASCocoaCategory-Private.xcconfig */,
7D175BA4CE7D0CC2B8FD79E7F0AC5F9C /* ASCocoaCategory-dummy.m */,
74E144F05F9856E4CBFF18AB59276609 /* ASCocoaCategory-prefix.pch */,
B11B5728798790EDD32645C896D26A01 /* ASCocoaCategory-umbrella.h */,
C23F1D2C26D6E4DAF1A1410CDD4F8B6D /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/ASCocoaCategory";
sourceTree = "<group>";
};
9AF1083AFAA883A474D3AE78E6F16E7C /* Foundation */ = {
isa = PBXGroup;
children = (
AB5DC55E1CF0DA6D000AF2F1 /* ASCommonMacro.h */,
AB5DC51C1CF0C418000AF2F1 /* ASFoundationCategory.h */,
AB5DC5541CF0D979000AF2F1 /* Math+ASMacro.h */,
AB5DC4C41CF0A659000AF2F1 /* Base64 */,
AB5DC4C91CF0A659000AF2F1 /* Hash */,
AB5DC4CE1CF0A659000AF2F1 /* JSON */,
AB15D95A1D448FCC00D6E8B5 /* MD5 */,
AB5DC55B1CF0DA16000AF2F1 /* NSBundle */,
4516C9026E69320D46954D8987F24093 /* NSDictionary */,
AB5DC4E51CF0A659000AF2F1 /* NSFileManager */,
AB5DC5561CF0D9A2000AF2F1 /* NSIndexPath */,
AB5DC4EA1CF0A659000AF2F1 /* NSString */,
AB5DC4F11CF0A659000AF2F1 /* runtime */,
AB5DC51E1CF0C609000AF2F1 /* SafeSelector */,
AB5DC52B1CF0C64E000AF2F1 /* TypeConvert */,
);
path = Foundation;
sourceTree = "<group>";
};
AAC22A7CCC43A8C9C96E008F1AF38804 /* UIImage */ = {
isa = PBXGroup;
children = (
AB40AB9D1D4CB50200DE1043 /* UIImage+ASImageEffects.h */,
AB40AB9E1D4CB50200DE1043 /* UIImage+ASImageEffects.m */,
B338D22DE8FE2B146D37897A142EA2AA /* UIImage+ASColor.h */,
0CB78450191B59285BADFDE39044DC56 /* UIImage+ASColor.m */,
ABC4BED61CF760F300D552A6 /* UIImage+ASDraw.h */,
ABC4BED71CF760F300D552A6 /* UIImage+ASDraw.m */,
ABC4BED81CF760F300D552A6 /* UIImage+ASDrawText.h */,
ABC4BED91CF760F300D552A6 /* UIImage+ASDrawText.m */,
ABC4BEDA1CF760F300D552A6 /* UIImage+ASResizable.h */,
ABC4BEDB1CF760F300D552A6 /* UIImage+ASResizable.m */,
ABC4BEDC1CF760F300D552A6 /* UIImage+ASTransform.h */,
ABC4BEDD1CF760F300D552A6 /* UIImage+ASTransform.m */,
);
path = UIImage;
sourceTree = "<group>";
};
AB15D95A1D448FCC00D6E8B5 /* MD5 */ = {
isa = PBXGroup;
children = (
AB15D95B1D448FF700D6E8B5 /* NSString+ASMD5.h */,
AB15D95C1D448FF700D6E8B5 /* NSString+ASMD5.m */,
);
path = MD5;
sourceTree = "<group>";
};
AB26FA4B1CF8BAC300B7C0B9 /* UIScreen */ = {
isa = PBXGroup;
children = (
AB26FA4C1CF8BAC300B7C0B9 /* UIScreen+ASSize.h */,
);
path = UIScreen;
sourceTree = "<group>";
};
AB26FA4D1CF8BAC300B7C0B9 /* UIWindow */ = {
isa = PBXGroup;
children = (
AB26FA4E1CF8BAC300B7C0B9 /* UIWindow+ASMacro.h */,
);
path = UIWindow;
sourceTree = "<group>";
};
AB5DC4C41CF0A659000AF2F1 /* Base64 */ = {
isa = PBXGroup;
children = (
AB5DC4C51CF0A659000AF2F1 /* NSData+ASBase64.h */,
AB5DC4C61CF0A659000AF2F1 /* NSData+ASBase64.m */,
AB5DC4C71CF0A659000AF2F1 /* NSString+ASBase64.h */,
AB5DC4C81CF0A659000AF2F1 /* NSString+ASBase64.m */,
);
path = Base64;
sourceTree = "<group>";
};
AB5DC4C91CF0A659000AF2F1 /* Hash */ = {
isa = PBXGroup;
children = (
AB5DC4CA1CF0A659000AF2F1 /* NSData+ASHash.h */,
AB5DC4CB1CF0A659000AF2F1 /* NSData+ASHash.m */,
AB5DC4CC1CF0A659000AF2F1 /* NSString+ASHash.h */,
AB5DC4CD1CF0A659000AF2F1 /* NSString+ASHash.m */,
);
path = Hash;
sourceTree = "<group>";
};
AB5DC4CE1CF0A659000AF2F1 /* JSON */ = {
isa = PBXGroup;
children = (
AB5DC4CF1CF0A659000AF2F1 /* Deserialization */,
AB5DC4DE1CF0A659000AF2F1 /* Serialization */,
);
path = JSON;
sourceTree = "<group>";
};
AB5DC4CF1CF0A659000AF2F1 /* Deserialization */ = {
isa = PBXGroup;
children = (
AB5DC4D01CF0A659000AF2F1 /* ASJSONDeserialization.h */,
AB5DC4D11CF0A659000AF2F1 /* ASJSONDeserialization.m */,
AB5DC4D21CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.h */,
AB5DC4D31CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.m */,
AB5DC4D41CF0A659000AF2F1 /* NSData+ASJSONDeserialization.h */,
AB5DC4D51CF0A659000AF2F1 /* NSData+ASJSONDeserialization.m */,
AB5DC4D61CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.h */,
AB5DC4D71CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.m */,
AB5DC4D81CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.h */,
AB5DC4D91CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.m */,
AB5DC4DA1CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.h */,
AB5DC4DB1CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.m */,
AB5DC4DC1CF0A659000AF2F1 /* NSString+ASJSONDeserialization.h */,
AB5DC4DD1CF0A659000AF2F1 /* NSString+ASJSONDeserialization.m */,
);
path = Deserialization;
sourceTree = "<group>";
};
AB5DC4DE1CF0A659000AF2F1 /* Serialization */ = {
isa = PBXGroup;
children = (
AB5DC4DF1CF0A659000AF2F1 /* ASJSONSerialization.h */,
AB5DC4E01CF0A659000AF2F1 /* ASJSONSerialization.m */,
AB5DC4E11CF0A659000AF2F1 /* NSArray+ASJSONSerialization.h */,
AB5DC4E21CF0A659000AF2F1 /* NSArray+ASJSONSerialization.m */,
AB5DC4E31CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.h */,
AB5DC4E41CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.m */,
);
path = Serialization;
sourceTree = "<group>";
};
AB5DC4E51CF0A659000AF2F1 /* NSFileManager */ = {
isa = PBXGroup;
children = (
AB5DC4E61CF0A659000AF2F1 /* NSFileManager+ASPath.h */,
AB5DC4E71CF0A659000AF2F1 /* NSFileManager+ASPath.m */,
);
path = NSFileManager;
sourceTree = "<group>";
};
AB5DC4EA1CF0A659000AF2F1 /* NSString */ = {
isa = PBXGroup;
children = (
AB5DC5381CF0C8FF000AF2F1 /* NSString+ASMacro.h */,
AB5DC4EB1CF0A659000AF2F1 /* NSString+ASNumeric.h */,
AB5DC4EC1CF0A659000AF2F1 /* NSString+ASNumeric.m */,
);
path = NSString;
sourceTree = "<group>";
};
AB5DC4F11CF0A659000AF2F1 /* runtime */ = {
isa = PBXGroup;
children = (
AB5DC4F21CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.h */,
AB5DC4F31CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.m */,
);
path = runtime;
sourceTree = "<group>";
};
AB5DC51E1CF0C609000AF2F1 /* SafeSelector */ = {
isa = PBXGroup;
children = (
AB5DC51F1CF0C609000AF2F1 /* NSArray+ASSafeSelector.h */,
AB5DC5201CF0C609000AF2F1 /* NSArray+ASSafeSelector.m */,
AB5DC5211CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.h */,
AB5DC5221CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.m */,
AB5DC5231CF0C609000AF2F1 /* NSObject+ASSafeSelector.h */,
AB5DC5241CF0C609000AF2F1 /* NSObject+ASSafeSelector.m */,
);
path = SafeSelector;
sourceTree = "<group>";
};
AB5DC52B1CF0C64E000AF2F1 /* TypeConvert */ = {
isa = PBXGroup;
children = (
AB5DC52C1CF0C64E000AF2F1 /* NSArray+ASTypeConvert.h */,
AB5DC52D1CF0C64E000AF2F1 /* NSArray+ASTypeConvert.m */,
AB5DC52E1CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.h */,
AB5DC52F1CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.m */,
AB5DC5301CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.h */,
AB5DC5311CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.m */,
);
path = TypeConvert;
sourceTree = "<group>";
};
AB5DC53A1CF0D4F8000AF2F1 /* CoreGraphics */ = {
isa = PBXGroup;
children = (
AB5DC53B1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.h */,
AB5DC53C1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.m */,
AB5DC53D1CF0D4F8000AF2F1 /* ASCoreGraphicsCategory.h */,
AB92625B1DCC625B00A4F34B /* CGGeometryExtern.h */,
AB92625C1DCC62E900A4F34B /* CGGeometryExtern.m */,
);
path = CoreGraphics;
sourceTree = "<group>";
};
AB5DC5561CF0D9A2000AF2F1 /* NSIndexPath */ = {
isa = PBXGroup;
children = (
AB5DC5571CF0D9A2000AF2F1 /* NSIndexPath+ASRange.h */,
AB5DC5581CF0D9A2000AF2F1 /* NSIndexPath+ASRange.m */,
);
path = NSIndexPath;
sourceTree = "<group>";
};
AB5DC55B1CF0DA16000AF2F1 /* NSBundle */ = {
isa = PBXGroup;
children = (
AB5DC55C1CF0DA16000AF2F1 /* NSBundle+ASMacro.h */,
AB15F01F1D93078A00013A88 /* NSBundle+ASLanguage.h */,
AB15F0201D93078A00013A88 /* NSBundle+ASLanguage.m */,
ABCED8FE1DA10C10007D485B /* NSBundle+ASMainBundle.h */,
ABCED8FF1DA10C10007D485B /* NSBundle+ASMainBundle.m */,
);
path = NSBundle;
sourceTree = "<group>";
};
AB60BA5E1DCD088700EA8B8F /* Photos */ = {
isa = PBXGroup;
children = (
AB60BA5F1DCD08AC00EA8B8F /* PHAsset+ASImage.h */,
AB60BA601DCD08AC00EA8B8F /* PHAsset+ASImage.m */,
AB60BA631DCD097A00EA8B8F /* PhotosCategory.h */,
ABFBFA631DCE6058000E6469 /* PHAssetCollection+ASAlbum.h */,
ABFBFA641DCE6058000E6469 /* PHAssetCollection+ASAlbum.m */,
);
path = Photos;
sourceTree = "<group>";
};
AB649D021D56E01A009BDD37 /* UITextField */ = {
isa = PBXGroup;
children = (
AB649D031D56E052009BDD37 /* UITextField+ASPlaceholderColor.h */,
AB649D041D56E052009BDD37 /* UITextField+ASPlaceholderColor.m */,
);
path = UITextField;
sourceTree = "<group>";
};
AB64DE231E2A850D00B69A2B /* UISearchBar */ = {
isa = PBXGroup;
children = (
AB64DE241E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.h */,
AB64DE251E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.m */,
);
path = UISearchBar;
sourceTree = "<group>";
};
AB9CC18A1D5A58DF00DA17E0 /* MKMapView */ = {
isa = PBXGroup;
children = (
AB9CC18D1D5A595F00DA17E0 /* MKMapView+ASZoomLevel.h */,
AB9CC18E1D5A595F00DA17E0 /* MKMapView+ASZoomLevel.m */,
);
path = MKMapView;
sourceTree = "<group>";
};
AB9CC18B1D5A58FE00DA17E0 /* MapKit */ = {
isa = PBXGroup;
children = (
AB9CC18A1D5A58DF00DA17E0 /* MKMapView */,
AB9CC18C1D5A594C00DA17E0 /* ASMapKitCategory.h */,
);
path = MapKit;
sourceTree = "<group>";
};
ABC4BEC11CF7554500D552A6 /* UIButton */ = {
isa = PBXGroup;
children = (
ABC4BEC21CF7556A00D552A6 /* UIButton+ASState.h */,
ABC4BEC31CF7556A00D552A6 /* UIButton+ASState.m */,
ABC4BEC41CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.h */,
ABC4BEC51CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.m */,
);
path = UIButton;
sourceTree = "<group>";
};
ABC4BEE61CF7613000D552A6 /* UIDevice */ = {
isa = PBXGroup;
children = (
ABC4BEFE1CF7620C00D552A6 /* UIDevice+ASMacro.h */,
ABC4BEE71CF7614300D552A6 /* UIDevice+ASVersionCached.h */,
ABC4BEE81CF7614300D552A6 /* UIDevice+ASVersionCached.m */,
);
path = UIDevice;
sourceTree = "<group>";
};
ABC4BEED1CF7615B00D552A6 /* Font */ = {
isa = PBXGroup;
children = (
ABC4BEEE1CF7615B00D552A6 /* UILabel+ASFont.h */,
ABC4BEEF1CF7615B00D552A6 /* UILabel+ASFont.m */,
ABC4BEF01CF7615B00D552A6 /* UITextField+ASFont.h */,
ABC4BEF11CF7615B00D552A6 /* UITextField+ASFont.m */,
ABC4BEF21CF7615B00D552A6 /* UITextView+ASFont.h */,
ABC4BEF31CF7615B00D552A6 /* UITextView+ASFont.m */,
ABC4BEF41CF7615B00D552A6 /* UIView+ASFont.h */,
ABC4BEF51CF7615B00D552A6 /* UIView+ASFont.m */,
);
path = Font;
sourceTree = "<group>";
};
BA8C40EB797B4BCE4716B90B15E0DE3B /* Classes */ = {
isa = PBXGroup;
children = (
AB60BA5E1DCD088700EA8B8F /* Photos */,
AB9CC18B1D5A58FE00DA17E0 /* MapKit */,
69D28364A9C556CFDC41D54BD0A2D652 /* ASCocoaCategory.h */,
AB5DC53A1CF0D4F8000AF2F1 /* CoreGraphics */,
9AF1083AFAA883A474D3AE78E6F16E7C /* Foundation */,
BD8857F49125647884CDCDC003E4D29E /* UIKit */,
);
path = Classes;
sourceTree = "<group>";
};
BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = {
isa = PBXGroup;
children = (
53F661C0CA7190D2CF05023FB33D61E4 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
BD8857F49125647884CDCDC003E4D29E /* UIKit */ = {
isa = PBXGroup;
children = (
AB64DE231E2A850D00B69A2B /* UISearchBar */,
AB649D021D56E01A009BDD37 /* UITextField */,
AB26FA511CF8BBCE00B7C0B9 /* ASUIKitCategory.h */,
AB26FA4B1CF8BAC300B7C0B9 /* UIScreen */,
AB26FA4D1CF8BAC300B7C0B9 /* UIWindow */,
ABC4BEED1CF7615B00D552A6 /* Font */,
ABC4BEEB1CF7614E00D552A6 /* UIGeometryExtends.h */,
ABC4BEE61CF7613000D552A6 /* UIDevice */,
ABC4BEC11CF7554500D552A6 /* UIButton */,
8E9C4C1937225B295A5109EAEBE6D4F3 /* UIColor */,
AAC22A7CCC43A8C9C96E008F1AF38804 /* UIImage */,
12EF2F04F0A4A3B088709CA418D51FA8 /* UIView */,
);
path = UIKit;
sourceTree = "<group>";
};
CCA510CFBEA2D207524CDA0D73C3B561 /* Products */ = {
isa = PBXGroup;
children = (
CAAF3F56C63B9BDECB4ABA21AA84A02A /* ASCocoaCategory.framework */,
0D045B9C5398D5142955B1AFC42D5DC1 /* Pods_ASCocoaCategory_Example.framework */,
47020B0C6FD314B895E94070FB9C4469 /* Pods_ASCocoaCategory_Tests.framework */,
);
name = Products;
sourceTree = "<group>";
};
F0697C034E12CFD69FB1A4996AC55E28 /* Development Pods */ = {
isa = PBXGroup;
children = (
47D143D46034FF799B6F8883790EF995 /* ASCocoaCategory */,
);
name = "Development Pods";
sourceTree = "<group>";
};
FE8E38EEB7A4803F114997EFA18B0B69 /* Pod */ = {
isa = PBXGroup;
children = (
BA8C40EB797B4BCE4716B90B15E0DE3B /* Classes */,
);
path = Pod;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
2FAA93E11D148892659CD046C6473C2A /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
EBBC4DD593EB97EB03E2E5267DA0878E /* Pods-ASCocoaCategory_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
30D29C80F6681B6C62B7B80628B65E9A /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
AB5DC55F1CF0DA6D000AF2F1 /* ASCommonMacro.h in Headers */,
AB40AB9F1D4CB50200DE1043 /* UIImage+ASImageEffects.h in Headers */,
AB9CC1911D5A5B8F00DA17E0 /* ASMapKitCategory.h in Headers */,
AB5DC5041CF0A659000AF2F1 /* NSMutableArray+ASJSONDeserialization.h in Headers */,
7BFFD53173565D09E6D11FF59D2A999E /* ASCocoaCategory-umbrella.h in Headers */,
AB5DC5341CF0C64E000AF2F1 /* NSDictionary+ASTypeConvert.h in Headers */,
AB5DC5001CF0A659000AF2F1 /* NSData+ASJSONDeserialization.h in Headers */,
3B86A4B608A65A1E13BF65B26D0CE4B7 /* ASCocoaCategory.h in Headers */,
AB5DC5081CF0A659000AF2F1 /* NSString+ASJSONDeserialization.h in Headers */,
AB5DC4FA1CF0A659000AF2F1 /* NSString+ASHash.h in Headers */,
20C5E1F7593D60F9210EF1E5A2F67BC7 /* NSDictionary+ASCommon.h in Headers */,
AB5DC50E1CF0A659000AF2F1 /* NSDictionary+ASJSONSerialization.h in Headers */,
AB20125B1D1E74160089FDDD /* UIView+ASViewController.h in Headers */,
AB5DC5271CF0C609000AF2F1 /* NSMutableArray+ASSafeSelector.h in Headers */,
AB5DC4F81CF0A659000AF2F1 /* NSData+ASHash.h in Headers */,
FD19A2A2562A024AD84E017DFC9F7E6D /* UIColor+ASCommon.h in Headers */,
AB5DC4F41CF0A659000AF2F1 /* NSData+ASBase64.h in Headers */,
ABC4BEFC1CF7615B00D552A6 /* UIView+ASFont.h in Headers */,
5C3BAFC4B23D36CC8A612612BF9172D8 /* UIColor+ASHex.h in Headers */,
AB5DC5101CF0A659000AF2F1 /* NSFileManager+ASPath.h in Headers */,
AB5DC51A1CF0A659000AF2F1 /* NSObject+ASPropertyAttributes.h in Headers */,
AB60BA611DCD08AC00EA8B8F /* PHAsset+ASImage.h in Headers */,
AB5DC5021CF0A659000AF2F1 /* NSDictionary+ASJSONDeserialization.h in Headers */,
AB40ABA31D4CB5B500DE1043 /* UIView+ASBlurredImage.h in Headers */,
AB5DC50C1CF0A659000AF2F1 /* NSArray+ASJSONSerialization.h in Headers */,
AB5DC55D1CF0DA16000AF2F1 /* NSBundle+ASMacro.h in Headers */,
AB5DC5291CF0C609000AF2F1 /* NSObject+ASSafeSelector.h in Headers */,
AB5DC5061CF0A659000AF2F1 /* NSMutableDictionary+ASJSONDeserialization.h in Headers */,
AB5DC5551CF0D979000AF2F1 /* Math+ASMacro.h in Headers */,
AB15D95D1D448FF700D6E8B5 /* NSString+ASMD5.h in Headers */,
AB5DC51D1CF0C418000AF2F1 /* ASFoundationCategory.h in Headers */,
AB5DC4FC1CF0A659000AF2F1 /* ASJSONDeserialization.h in Headers */,
ABC4BED41CF75FA900D552A6 /* UIView+ASAnimationOnOff.h in Headers */,
ABC4BEF81CF7615B00D552A6 /* UITextField+ASFont.h in Headers */,
AB5DC5401CF0D4F8000AF2F1 /* ASCoreGraphicsCategory.h in Headers */,
ABC4BEFA1CF7615B00D552A6 /* UITextView+ASFont.h in Headers */,
ABC4BEEC1CF7614E00D552A6 /* UIGeometryExtends.h in Headers */,
AB9CC18F1D5A595F00DA17E0 /* MKMapView+ASZoomLevel.h in Headers */,
ABC4BEE41CF760F300D552A6 /* UIImage+ASTransform.h in Headers */,
AB5DC4F61CF0A659000AF2F1 /* NSString+ASBase64.h in Headers */,
AB649D051D56E052009BDD37 /* UITextField+ASPlaceholderColor.h in Headers */,
AB5DC5391CF0C8FF000AF2F1 /* NSString+ASMacro.h in Headers */,
ABC466F31D8D8F720037EDDF /* UIView+ASXibLoader.h in Headers */,
AB26FA501CF8BAC300B7C0B9 /* UIWindow+ASMacro.h in Headers */,
ABC4BEBF1CF753AD00D552A6 /* UIColor+ASHSV.h in Headers */,
ABC4BEC61CF7556A00D552A6 /* UIButton+ASState.h in Headers */,
ABC4BECC1CF75E7000D552A6 /* UIView+ASBounds.h in Headers */,
AB5DC53E1CF0D4F8000AF2F1 /* CGAffineTransform+UIInterfaceOrientation.h in Headers */,
AB5DC4FE1CF0A659000AF2F1 /* NSArray+ASJSONDeserialization.h in Headers */,
AB5DC50A1CF0A659000AF2F1 /* ASJSONSerialization.h in Headers */,
ABC4BEC81CF7556A00D552A6 /* UIButton+ASBackgroundColorForState.h in Headers */,
ABC4BEF61CF7615B00D552A6 /* UILabel+ASFont.h in Headers */,
ABC4BEE21CF760F300D552A6 /* UIImage+ASResizable.h in Headers */,
ABC4BED21CF75FA900D552A6 /* UIView+ASAnimation.h in Headers */,
ABC4BEE01CF760F300D552A6 /* UIImage+ASDrawText.h in Headers */,
AB26FA4A1CF8BA9000B7C0B9 /* UIView+ASAutoresizingMask.h in Headers */,
AB26FA4F1CF8BAC300B7C0B9 /* UIScreen+ASSize.h in Headers */,
AB64DE261E2A853C00B69A2B /* UISearchBar+ASPrivateProperty.h in Headers */,
ABC4BEE91CF7614300D552A6 /* UIDevice+ASVersionCached.h in Headers */,
ABFBFA651DCE6058000E6469 /* PHAssetCollection+ASAlbum.h in Headers */,
ABC4BEFF1CF7620C00D552A6 /* UIDevice+ASMacro.h in Headers */,
ABC4BEDE1CF760F300D552A6 /* UIImage+ASDraw.h in Headers */,
AB15F0211D93078A00013A88 /* NSBundle+ASLanguage.h in Headers */,
ABA546DA1D45DA3F00A6D209 /* UIColor+ASMacro.h in Headers */,
AB5DC5141CF0A659000AF2F1 /* NSString+ASNumeric.h in Headers */,
AB5DC5591CF0D9A2000AF2F1 /* NSIndexPath+ASRange.h in Headers */,
AB5DC5321CF0C64E000AF2F1 /* NSArray+ASTypeConvert.h in Headers */,
B92AC83D5405A1122D987D95865DFED1 /* UIImage+ASColor.h in Headers */,
AB26FA521CF8BF9300B7C0B9 /* ASUIKitCategory.h in Headers */,
3AF6DD6B6CF6A664C42AA293ACAC0866 /* UIView+ASBackground.h in Headers */,
AB9CC17F1D5A4B1500DA17E0 /* UIView+ASConvertRect.h in Headers */,
C81025699AC6A5F1A781CFC0E3957499 /* UIView+ASCommon.h in Headers */,
AB5DC5361CF0C64E000AF2F1 /* NSMutableDictionary+ASTypeConvert.h in Headers */,
ABCED9001DA10C10007D485B /* NSBundle+ASMainBundle.h in Headers */,
7BD91043CA3082545056726B29BBBBDA /* UIView+ASFrame.h in Headers */,
AB5DC5251CF0C609000AF2F1 /* NSArray+ASSafeSelector.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5526E0D1F91A83BC7DE893BDFCEAFD47 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
84F9250F6C1663F56F04C3ACAFF24B88 /* Pods-ASCocoaCategory_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
C7F5570044A4D42366615682BC3B685C /* Pods-ASCocoaCategory_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 675DF9BDA0345B33B9BE7FCA98DF999A /* Build configuration list for PBXNativeTarget "Pods-ASCocoaCategory_Example" */;
buildPhases = (
B4309A92F8616EABC33380177BEF339A /* Sources */,
9425127C24DED8D9A5BA54075E10A414 /* Frameworks */,
5526E0D1F91A83BC7DE893BDFCEAFD47 /* Headers */,
);
buildRules = (
);
dependencies = (
5980ECC6C77F4202AD44A9DCF7FE8C45 /* PBXTargetDependency */,
);