This repository was archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1146 lines (1133 loc) · 86.3 KB
/
Copy pathproject.pbxproj
File metadata and controls
1146 lines (1133 loc) · 86.3 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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00905F99F8BA2ED161ADA38966F6909A /* UIButton+Styles.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAC2ED7471CDDAFF3F31B226D05E4A9 /* UIButton+Styles.h */; settings = {ATTRIBUTES = (Public, ); }; };
08217DCD8BAF40FC81477CDD9D3A72CC /* UIButton+Styles.m in Sources */ = {isa = PBXBuildFile; fileRef = 96508FCF92ABBEBC5BC3EA98B7BA3297 /* UIButton+Styles.m */; };
0BEFB020D2A65C8C54FA8B9BAF5AF782 /* Pods-Styles_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DE8BEDCA5DA425F7F7F50C5AF7E92E7F /* Pods-Styles_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0E28D0E9334A6978E7CCFBD6B58C898C /* UISwitch+Styles.m in Sources */ = {isa = PBXBuildFile; fileRef = 38927F565972AB43D41E224816AC3F52 /* UISwitch+Styles.m */; };
210D38D7E85152965E5F3235009DF87F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95609505D6C8C6CE32A0E8F6189434BE /* Foundation.framework */; };
27CEA56EC4DB4070931A4CECA1385D7A /* Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36B1FE6C75132E93002767A5A9B49836 /* Shadow.swift */; };
2BDE316C4DB01A80A31D57A54C5C8B84 /* ViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B7403C925728485DD269CC4631B9296 /* ViewStyle.swift */; };
2DFB8CF181A8CFD3C78A2A33E18A514E /* TextStyleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7FA7CD4547286885C1969E106408843 /* TextStyleTests.swift */; };
2E8648A3BAC6323BD551AE96C077D0AC /* UIView+Styles.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D632892FB66A6E77E31EFBEFB55BDF5 /* UIView+Styles.m */; };
34DF3B952D3C67B8CB1D2B9AC4CF69DA /* UINavigationBar+Styles.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB87E3C989DEE79DBE64D58852DB8EC /* UINavigationBar+Styles.h */; settings = {ATTRIBUTES = (Public, ); }; };
34F55145E0CA274C22F7F44D13D83DBB /* UIColor+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26ACF933809E934208E6F0CC76B80750 /* UIColor+Utils.swift */; };
357DAFBE0667D447B4414CA4A7492927 /* UIImage+Attachment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D2EB5B205725800069426D8D72C4686 /* UIImage+Attachment.swift */; };
4884E46887F084CAE38C5DD585EFC458 /* UITextField+Styles.h in Headers */ = {isa = PBXBuildFile; fileRef = FC328B08A1ED7683A21C7D776550E5F2 /* UITextField+Styles.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B6D9D601B4F923AEF57761B7B103E4C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95609505D6C8C6CE32A0E8F6189434BE /* Foundation.framework */; };
509B91949FF972A16D0FF5AD39812F51 /* NSAttributedString+Mutable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25E29A41E6A87BE232AE98AEC32A0220 /* NSAttributedString+Mutable.swift */; };
58D883EACEE428F2A7F45CE0A1200249 /* UISwitch+Styles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA1912D5C396B47F21D81149D96A167D /* UISwitch+Styles.h */; settings = {ATTRIBUTES = (Public, ); }; };
5A8E15748B1B4F1AFBCACDE18B0E8815 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95609505D6C8C6CE32A0E8F6189434BE /* Foundation.framework */; };
5A9138403DAFEF309C45F3D9F7CA7FBD /* UIOffset+Size.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2F23D31299C049FA203B076C2BB87B9 /* UIOffset+Size.swift */; };
6A9C72618F83959A5DE70EE683438C46 /* Styles-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A17F26758B8C8F610E5D8004F089EF5D /* Styles-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
6C5491848003C85CEB424075D9E017E0 /* Pods-Styles_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25422082CBBE5892F1A7DA090D9750C5 /* Pods-Styles_Example-dummy.m */; };
6DF5CA33F0A8EA178BDE488A4745BCDA /* Styles.h in Headers */ = {isa = PBXBuildFile; fileRef = 860CA5048AC2FD5124A4D979A385475F /* Styles.h */; settings = {ATTRIBUTES = (Public, ); }; };
7D412B2DEC8B8393B0B8EC7F094A810C /* UINavigationBar+Styles.m in Sources */ = {isa = PBXBuildFile; fileRef = 5391517F25CF9861534104FB182CBB14 /* UINavigationBar+Styles.m */; };
833621F59ACB68A6F84F861C3707D404 /* UILabel+Styles.h in Headers */ = {isa = PBXBuildFile; fileRef = 265A6897C1B8BF3951D9D3B7B5EC3B47 /* UILabel+Styles.h */; settings = {ATTRIBUTES = (Public, ); }; };
88B02CA86F9C0EBA4545BFF5BD3574BC /* Styles.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5F06609F447D5845B19F07A1D36D57C /* Styles.framework */; };
893E8B7D1B20DC1B6F5DACE3C5724DF6 /* SwitchStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 092AC87F24E14872A785A02888E64EEB /* SwitchStyle.swift */; };
8AE58E54B464C27954521DA03649E830 /* UITextView+Styles.m in Sources */ = {isa = PBXBuildFile; fileRef = 83529D903409B3657E2F25CE6E9380F3 /* UITextView+Styles.m */; };
912448FF74B6AB5BE9D7696F36AAD656 /* TextEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = 670B8D7F1FF02DB65C9FA257A73C2B14 /* TextEffect.swift */; };
91735DB85F70789AE1229E2D89BC76CF /* UIView+Styles.h in Headers */ = {isa = PBXBuildFile; fileRef = 669897FCA7A90C35D872B21E849CD8D4 /* UIView+Styles.h */; settings = {ATTRIBUTES = (Public, ); }; };
918E9D430C82D1F685E364AC2BAB2A4B /* Regex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 776B8654D5867C723C42FF9C27084887 /* Regex.swift */; };
A72945500DB62906F440BFD393D62778 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31122CDA698504BDFB1569C61367A3AF /* Range.swift */; };
A8B27B2DA6F4F0CD2FDFAA5CBDA5BD6A /* NSMutableParagraphStyle+TextStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1103A84ED35933464CD190CB41D5DFD3 /* NSMutableParagraphStyle+TextStyle.swift */; };
ABEBA31F977624E28320931044432FD5 /* UILabel+Styles.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EAC79940FEB7A9D2A00BDE4A6911FEB /* UILabel+Styles.m */; };
B4C86FA3A6824EB1FBED407D1F3CEE0B /* TextDecoration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82AE37FCD6C73910FD55E799211BF9B6 /* TextDecoration.swift */; };
BCF79FBF01978CB41AC6DA1AC634534F /* Swizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EEF2C621486B96A46360966B204E77C /* Swizzle.h */; settings = {ATTRIBUTES = (Public, ); }; };
BFCB6D08822DADE877B173B477BB1E60 /* TextStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = B18B2181FD803D7F150E173060DBCFC4 /* TextStyle.swift */; };
CBBF2D57C9B2BF85B375117661D190DD /* Block.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75D636B27A3909BF2C37B7A2FB36EA29 /* Block.swift */; };
CDD60F1E2CD948287AED0E61D17A7134 /* Swizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = 99260C75406F8526D6EBB5E17884A6D2 /* Swizzle.m */; };
CF05817C1DDE5F1C438D2E2382E9CE4E /* Array+Styles.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66A6EBA02365A315E769B2D8EDBBDF1D /* Array+Styles.swift */; };
DBDA1F9F665975E7B1EDEF2E990C6631 /* UITextView+Styles.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B20204F0F1750D0A8B0D89085FEF1A /* UITextView+Styles.h */; settings = {ATTRIBUTES = (Public, ); }; };
DE9F8031665DB3D7FAF5CB89EFE9A180 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01818DB1A7DB742C37A6022DA049C4E1 /* First.swift */; };
E0EF64969F85364369EBAAE9B512C0A8 /* TextInputState.h in Headers */ = {isa = PBXBuildFile; fileRef = BDBCDA510AC5D75B8E85FC507A32EDCF /* TextInputState.h */; settings = {ATTRIBUTES = (Public, ); }; };
E24DE1BA9617DD88CD3F775C2958D6FB /* ViewStyleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94F82D0E8D1E131584D2DEE715376F3C /* ViewStyleTests.swift */; };
EAA37A9D9088798A9D9BF40BE6087352 /* UIImage+Colorize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3193E41C8F56FC80D668A44E77E98D69 /* UIImage+Colorize.swift */; };
FC5AB57C16CF03689D9F5F1F5EF28EB7 /* Styles-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CFE721723A7713A4096FB7ED6EAA680 /* Styles-dummy.m */; };
FFBD3BED31D74C4C67F2C95186B5F8CA /* UITextField+Styles.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E02B94B908D572E5DFC21197B826655 /* UITextField+Styles.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
92A746B34A86B48E7E7CA3A7E40EB6DA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 3AA71C17C4125DCF5B8C53FED1E03A07;
remoteInfo = Styles;
};
ABA3DAD1F1D5197A800DEDB34866A63E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 3AA71C17C4125DCF5B8C53FED1E03A07;
remoteInfo = Styles;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0058E6ECD89EE0983BC7E0BA84C9E6F6 /* TextDecoration.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TextDecoration.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Structs/TextDecoration.html; sourceTree = "<group>"; };
01818DB1A7DB742C37A6022DA049C4E1 /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = First.swift; sourceTree = "<group>"; };
0809CE14289C3635C6B449F9883AC024 /* search.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = search.json; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/search.json; sourceTree = "<group>"; };
08B4E710CBD881537B50102BF264B0BF /* Property.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Property.html; path = docs/swift/Classes/TextStyle/Property.html; sourceTree = "<group>"; };
092AC87F24E14872A785A02888E64EEB /* SwitchStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchStyle.swift; path = Styles/Classes/SwitchStyle.swift; sourceTree = "<group>"; };
09374C0F780DFB3EA3C297C56A0DC854 /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = jazzy.css; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/css/jazzy.css; sourceTree = "<group>"; };
0AB4BADAC97A7D3DFB9BE31188EAA16D /* TextStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TextStyle.html; path = docs/swift/Classes/TextStyle.html; sourceTree = "<group>"; };
1103A84ED35933464CD190CB41D5DFD3 /* NSMutableParagraphStyle+TextStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "NSMutableParagraphStyle+TextStyle.swift"; sourceTree = "<group>"; };
12DD9A7024F5FE8A6CDEF42511CF40F3 /* Style.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Style.html; path = docs/swift/Structs/TextDecoration/Style.html; sourceTree = "<group>"; };
132356CF9673AE8793ACDDD0BAB5027D /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jquery.min.js; path = docs/swift/js/jquery.min.js; sourceTree = "<group>"; };
16BFBCA9566A2CECB160D98847C009F9 /* First.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = First.html; path = docs/swift/Classes/First.html; sourceTree = "<group>"; };
19012FF11BE9C5CC2248C6E4138B0AC2 /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = highlight.css; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/css/highlight.css; sourceTree = "<group>"; };
1CF1E617EC4226B15FD3FB83F55E3CF3 /* Style.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Style.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Structs/TextDecoration/Style.html; sourceTree = "<group>"; };
1E02B94B908D572E5DFC21197B826655 /* UITextField+Styles.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UITextField+Styles.m"; sourceTree = "<group>"; };
1F600D5C8375D6976D8D33CBA59579AE /* Pods-Styles_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Styles_Example-acknowledgements.plist"; sourceTree = "<group>"; };
20622F090072AD9E4401C39BAFB5AFF0 /* gh.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = gh.png; path = docs/objc/img/gh.png; sourceTree = "<group>"; };
2065D371B9B63B9540C43ABEE5ECCFBA /* Match.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Match.html; path = docs/swift/Protocols/Match.html; sourceTree = "<group>"; };
250F8BEA57FB8AD8506C6A44A72393CB /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jquery.min.js; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/js/jquery.min.js; sourceTree = "<group>"; };
25422082CBBE5892F1A7DA090D9750C5 /* Pods-Styles_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Styles_Example-dummy.m"; sourceTree = "<group>"; };
25E29A41E6A87BE232AE98AEC32A0220 /* NSAttributedString+Mutable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "NSAttributedString+Mutable.swift"; sourceTree = "<group>"; };
265A6897C1B8BF3951D9D3B7B5EC3B47 /* UILabel+Styles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UILabel+Styles.h"; sourceTree = "<group>"; };
26ACF933809E934208E6F0CC76B80750 /* UIColor+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIColor+Utils.swift"; sourceTree = "<group>"; };
27E7C965A5C4F4D778669D934C0A7545 /* Shadow.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Shadow.html; path = docs/swift/Structs/Shadow.html; sourceTree = "<group>"; };
283CB4480765B0FA1585DDC374F8A4B0 /* carat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = carat.png; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/img/carat.png; sourceTree = "<group>"; };
28DA0894C137698EEBB992AC679AF2EE /* Property.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Property.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/TextStyle/Property.html; sourceTree = "<group>"; };
2B72EF411CE9A700CFF77CF11D1CC506 /* badge.svg */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = badge.svg; path = docs/swift/badge.svg; sourceTree = "<group>"; };
2EC86026A6E2A1377342135A96F54AA0 /* TextEffect.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TextEffect.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Enums/TextEffect.html; sourceTree = "<group>"; };
2EEF2C621486B96A46360966B204E77C /* Swizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Swizzle.h; sourceTree = "<group>"; };
2FF33D63E438481C0F496C10BB4E8544 /* dash.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = dash.png; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/img/dash.png; sourceTree = "<group>"; };
30058D4F185BE623F838804B6498838F /* TextEffect.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TextEffect.html; path = docs/swift/Enums/TextEffect.html; sourceTree = "<group>"; };
31122CDA698504BDFB1569C61367A3AF /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Range.swift; sourceTree = "<group>"; };
3193E41C8F56FC80D668A44E77E98D69 /* UIImage+Colorize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIImage+Colorize.swift"; sourceTree = "<group>"; };
327536734807348FC23722ECCBFEBDD1 /* search.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = search.json; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/search.json; sourceTree = "<group>"; };
32F51507323EA8324438A81D7A06608A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
33AFB41697E8DAC17614A4E84AD505A7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
36B1FE6C75132E93002767A5A9B49836 /* Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Shadow.swift; path = Styles/Classes/Shadow.swift; sourceTree = "<group>"; };
37213598031FA269808B11D0655FEEC6 /* Match.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Match.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Protocols/Match.html; sourceTree = "<group>"; };
38152076C5E85A9081D63344F63C913F /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jquery.min.js; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/js/jquery.min.js; sourceTree = "<group>"; };
38927F565972AB43D41E224816AC3F52 /* UISwitch+Styles.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UISwitch+Styles.m"; sourceTree = "<group>"; };
38998D66DDF5A96AF1E14C20D2426D70 /* Pods-Styles_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Styles_Example-frameworks.sh"; sourceTree = "<group>"; };
3A281F591E3F9BF2028F4A74CBEA70F3 /* Pattern.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Pattern.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Structs/TextDecoration/Pattern.html; sourceTree = "<group>"; };
3B058CE6EDE66D3AF33FF8F54ACA50B3 /* Styles.tgz */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Styles.tgz; path = docs/swift/docsets/Styles.tgz; sourceTree = "<group>"; };
3BAC2ED7471CDDAFF3F31B226D05E4A9 /* UIButton+Styles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIButton+Styles.h"; sourceTree = "<group>"; };
3C5CDBB6C2AE23D4C2CFA066DA564DCF /* NSMutableParagraphStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = NSMutableParagraphStyle.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Extensions/NSMutableParagraphStyle.html; sourceTree = "<group>"; };
3C7823CE71EC62E39C7420C60E8BEFD1 /* UIOffset.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = UIOffset.html; path = docs/swift/Extensions/UIOffset.html; sourceTree = "<group>"; };
3CC7E7631D061243BA5257FFB0988066 /* Range.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Range.html; path = docs/swift/Classes/Range.html; sourceTree = "<group>"; };
40EA5E9F944CF3C551B4A661A6834D27 /* Pods_Styles_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Styles_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
428F7523FA453AE07F31AB622ED2714B /* Styles.unit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Styles.unit.xcconfig; sourceTree = "<group>"; };
42EAF33F1FA9BC9C5D62E6656D2869A5 /* TextDecoration.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TextDecoration.html; path = docs/swift/Structs/TextDecoration.html; sourceTree = "<group>"; };
456D4F9CCE36A5F24885F14F1A9BC4E0 /* UIView(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = "UIView(Styles).html"; path = "docs/objc/Categories/UIView(Styles).html"; sourceTree = "<group>"; };
46AEE20D1803EB786B9161D8AA486C4E /* Pattern.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Pattern.html; path = docs/swift/Structs/TextDecoration/Pattern.html; sourceTree = "<group>"; };
4838934846EA27ACEB90FEEF5E746A48 /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jquery.min.js; path = docs/objc/js/jquery.min.js; sourceTree = "<group>"; };
4A35E6934F6D23DF382D3B13BAB48275 /* TextInputState.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = TextInputState.html; path = docs/objc/Enums/TextInputState.html; sourceTree = "<group>"; };
4CE8338595C6D05CEA501B09E93508E5 /* Extensions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Extensions.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Extensions.html; sourceTree = "<group>"; };
4DCC5C1642D1514EEB22318D3CD78545 /* Extensions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Extensions.html; path = docs/swift/Extensions.html; sourceTree = "<group>"; };
4E4179561E47A48393395354AAD02719 /* UITextView(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = "UITextView(Styles).html"; path = "docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Categories/UITextView(Styles).html"; sourceTree = "<group>"; };
4E9D9C13027B43C4D321791E3FBB75EB /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Enums.html; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Enums.html; sourceTree = "<group>"; };
51A252479315AD211A4E7E065F88D6EF /* WritingDirectionOverride.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = WritingDirectionOverride.html; path = docs/swift/Classes/TextStyle/WritingDirectionOverride.html; sourceTree = "<group>"; };
5391517F25CF9861534104FB182CBB14 /* UINavigationBar+Styles.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UINavigationBar+Styles.m"; sourceTree = "<group>"; };
54B20204F0F1750D0A8B0D89085FEF1A /* UITextView+Styles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UITextView+Styles.h"; sourceTree = "<group>"; };
56A359A018162F18F45C2C79EE913D7A /* UIView(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = "UIView(Styles).html"; path = "docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Categories/UIView(Styles).html"; sourceTree = "<group>"; };
5877AA4B6493C3BB00F89195445056AE /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Enums.html; path = docs/objc/Enums.html; sourceTree = "<group>"; };
5949143569ACBDFA27E16A95F6D97B98 /* Styles-Unit-Tests-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Styles-Unit-Tests-prefix.pch"; sourceTree = "<group>"; };
5A9DE9581268747C591486FE86F7B620 /* TextStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TextStyle.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/TextStyle.html; sourceTree = "<group>"; };
63059331CECD3751B978FB9B89D95FF4 /* Property.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Property.html; path = docs/swift/Classes/ViewStyle/Property.html; sourceTree = "<group>"; };
651EE46675F02AE43FAA00ED746E4515 /* Protocols.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Protocols.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Protocols.html; sourceTree = "<group>"; };
65590EA96EB65F6527E5E838516BF544 /* Styles-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Styles-prefix.pch"; sourceTree = "<group>"; };
664FB7DA264C6CA084B3982462AE4110 /* docSet.dsidx */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = docSet.dsidx; path = docs/objc/docsets/Styles.docset/Contents/Resources/docSet.dsidx; sourceTree = "<group>"; };
666A0460CCB2754AC7E7B07E6425D93C /* Styles.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Styles.framework; sourceTree = BUILT_PRODUCTS_DIR; };
669897FCA7A90C35D872B21E849CD8D4 /* UIView+Styles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Styles.h"; sourceTree = "<group>"; };
66A6EBA02365A315E769B2D8EDBBDF1D /* Array+Styles.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Array+Styles.swift"; sourceTree = "<group>"; };
670B8D7F1FF02DB65C9FA257A73C2B14 /* TextEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextEffect.swift; path = Styles/Classes/TextEffect.swift; sourceTree = "<group>"; };
67E4775C9E7A69396495FE3C418FE865 /* UINavigationBar(TextStyle).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = "UINavigationBar(TextStyle).html"; path = "docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Categories/UINavigationBar(TextStyle).html"; sourceTree = "<group>"; };
6B7403C925728485DD269CC4631B9296 /* ViewStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewStyle.swift; path = Styles/Classes/ViewStyle.swift; sourceTree = "<group>"; };
6BEB48CE6AA9D94141013FB515C41F39 /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.js; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/js/jazzy.js; sourceTree = "<group>"; };
6CF7878D3D387075AA8E038B7F3EB74E /* undocumented.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = undocumented.json; path = docs/objc/undocumented.json; sourceTree = "<group>"; };
6D7F369FE55606D0306EA9C5EE66718F /* Styles.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Styles.xcconfig; sourceTree = "<group>"; };
6FB87E3C989DEE79DBE64D58852DB8EC /* UINavigationBar+Styles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UINavigationBar+Styles.h"; sourceTree = "<group>"; };
75D636B27A3909BF2C37B7A2FB36EA29 /* Block.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Block.swift; sourceTree = "<group>"; };
76CDFA15A182AD527DD753B1C667B004 /* carat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = carat.png; path = docs/swift/img/carat.png; sourceTree = "<group>"; };
776B8654D5867C723C42FF9C27084887 /* Regex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Regex.swift; sourceTree = "<group>"; };
7B2A3137FABDCEFADC9FCE6A8A918008 /* Styles.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Styles.modulemap; sourceTree = "<group>"; };
7C0D83866316EDC4F997DDB4358DF6F3 /* ViewStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ViewStyle.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/ViewStyle.html; sourceTree = "<group>"; };
7CD558B594129755460A3ADCE8FB3734 /* Pods-Styles_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Styles_Example.modulemap"; sourceTree = "<group>"; };
7CFE721723A7713A4096FB7ED6EAA680 /* Styles-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Styles-dummy.m"; sourceTree = "<group>"; };
7EDDB4A986980B684ECB7411080797F4 /* Regex.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Regex.html; path = docs/swift/Classes/Regex.html; sourceTree = "<group>"; };
8016AB32A2BDFBA60A1D7F0245AB2C70 /* ParagraphStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ParagraphStyle.html; path = docs/swift/Classes/TextStyle/ParagraphStyle.html; sourceTree = "<group>"; };
808390622F971DA22153417C203204A5 /* docSet.dsidx */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = docSet.dsidx; path = docs/swift/docsets/Styles.docset/Contents/Resources/docSet.dsidx; sourceTree = "<group>"; };
82AE37FCD6C73910FD55E799211BF9B6 /* TextDecoration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextDecoration.swift; path = Styles/Classes/TextDecoration.swift; sourceTree = "<group>"; };
82E0D2D86E1B3E1FFFED78BEBABA9DE2 /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.js; path = docs/swift/js/jazzy.js; sourceTree = "<group>"; };
83529D903409B3657E2F25CE6E9380F3 /* UITextView+Styles.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UITextView+Styles.m"; sourceTree = "<group>"; };
860CA5048AC2FD5124A4D979A385475F /* Styles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Styles.h; path = Styles/Classes/Styles.h; sourceTree = "<group>"; };
86AD716A54179C0BF6642957BD71BA24 /* UILabel(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = "UILabel(Styles).html"; path = "docs/objc/Categories/UILabel(Styles).html"; sourceTree = "<group>"; };
8ABA0F820BC89F38C50210BBEB4DAC3A /* dash.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = dash.png; path = docs/objc/img/dash.png; sourceTree = "<group>"; };
8AD3C8302678325B7BDCAA6BFA180344 /* gh.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = gh.png; path = docs/swift/img/gh.png; sourceTree = "<group>"; };
8C32FF7F843B2CDA8C9E587E9E2E1674 /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = highlight.css; path = docs/objc/css/highlight.css; sourceTree = "<group>"; };
8D632892FB66A6E77E31EFBEFB55BDF5 /* UIView+Styles.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+Styles.m"; sourceTree = "<group>"; };
8D6EC5752115FBCE819C5F0289619729 /* Block.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Block.html; path = docs/swift/Classes/Block.html; sourceTree = "<group>"; };
8EF5D0AC58DCE2E76BBCAEADD7558D47 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = index.html; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/index.html; sourceTree = "<group>"; };
91FD835D03A45BA9F84E0A4B660C02FA /* Styles.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = Styles.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
949EC4665641BA0D5A4096E5112FEDA8 /* Styles-Unit-Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Styles-Unit-Tests-frameworks.sh"; sourceTree = "<group>"; };
94F82D0E8D1E131584D2DEE715376F3C /* ViewStyleTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewStyleTests.swift; path = Styles/Tests/ViewStyleTests.swift; sourceTree = "<group>"; };
952C8085AFFD4F24FFC8D88FF0531E7F /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.js; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/js/jazzy.js; sourceTree = "<group>"; };
95609505D6C8C6CE32A0E8F6189434BE /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
96508FCF92ABBEBC5BC3EA98B7BA3297 /* UIButton+Styles.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Styles.m"; sourceTree = "<group>"; };
97554826F288E9AEA6B81B4DB423FDF9 /* Categories.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Categories.html; path = docs/objc/Categories.html; sourceTree = "<group>"; };
98122E0E6FC2EEE25EA1AD7C402582C1 /* UITextView(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = "UITextView(Styles).html"; path = "docs/objc/Categories/UITextView(Styles).html"; sourceTree = "<group>"; };
99260C75406F8526D6EBB5E17884A6D2 /* Swizzle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Swizzle.m; sourceTree = "<group>"; };
9A566989D6E8DEFBC7F5CF38156F8B33 /* gh.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = gh.png; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/img/gh.png; sourceTree = "<group>"; };
9A6BE85CF6F3B9E542FF3D9D27D04C73 /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = jazzy.css; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/css/jazzy.css; sourceTree = "<group>"; };
9ADB2B7E12B39EDD47F99B655193F123 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = index.html; path = docs/swift/index.html; sourceTree = "<group>"; };
9AF71E12ED20118AEADEDBCBDE51E861 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = index.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/index.html; sourceTree = "<group>"; };
9D2EB5B205725800069426D8D72C4686 /* UIImage+Attachment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIImage+Attachment.swift"; sourceTree = "<group>"; };
9EAC79940FEB7A9D2A00BDE4A6911FEB /* UILabel+Styles.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Styles.m"; sourceTree = "<group>"; };
A1344A1DDB96351DFF68D841CF215AEA /* Block.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Block.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/Block.html; sourceTree = "<group>"; };
A17F26758B8C8F610E5D8004F089EF5D /* Styles-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Styles-umbrella.h"; sourceTree = "<group>"; };
A30D21FDAFCF872368781B052D7C7461 /* Regex.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Regex.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/Regex.html; sourceTree = "<group>"; };
A35EE910AD8DCDD0B63E468C610D6FE4 /* Protocols.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Protocols.html; path = docs/swift/Protocols.html; sourceTree = "<group>"; };
A37BBA889F8198E95F5B3374F853C0B7 /* UINavigationBar(TextStyle).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = "UINavigationBar(TextStyle).html"; path = "docs/objc/Categories/UINavigationBar(TextStyle).html"; sourceTree = "<group>"; };
A39D61A00D1E02B0695AF1E21165DEDE /* undocumented.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = undocumented.json; path = docs/swift/undocumented.json; sourceTree = "<group>"; };
A5F06609F447D5845B19F07A1D36D57C /* Styles.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Styles.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A64C6A487AD3C58DCF2CAA1AE656600C /* Classes.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Classes.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes.html; sourceTree = "<group>"; };
A7F7B8A3D3998FDD9854227D017DC2AA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
AA1912D5C396B47F21D81149D96A167D /* UISwitch+Styles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UISwitch+Styles.h"; sourceTree = "<group>"; };
AB93E8839292AE6CDABDAA373CD0A49D /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = index.html; path = docs/objc/index.html; sourceTree = "<group>"; };
AC3C0259F6F3324FA64039539892BB71 /* gh.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = gh.png; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/img/gh.png; sourceTree = "<group>"; };
ACE3AC3D764A5343D57365086A666100 /* Styles.tgz */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = Styles.tgz; path = docs/objc/docsets/Styles.tgz; sourceTree = "<group>"; };
AD880FD1F52978F8BAA3A7EF87F39D2A /* Pods-Styles_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Styles_Example.release.xcconfig"; sourceTree = "<group>"; };
AE3F8F156F9318CDF48E8E9483DF7A3F /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = jazzy.css; path = docs/swift/css/jazzy.css; sourceTree = "<group>"; };
AF19DD37A150AED3A641579FFAC6C73D /* WritingDirectionOverride.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = WritingDirectionOverride.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/TextStyle/WritingDirectionOverride.html; sourceTree = "<group>"; };
B18B2181FD803D7F150E173060DBCFC4 /* TextStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextStyle.swift; path = Styles/Classes/TextStyle.swift; sourceTree = "<group>"; };
B4678AF44699EE0893E185EC9E134D15 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = docs/swift/docsets/Styles.docset/Contents/Info.plist; sourceTree = "<group>"; };
B99B6D77603300C89B9FDAFD2DED2308 /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.js; path = docs/objc/js/jazzy.js; sourceTree = "<group>"; };
BC942EA64653BF9B59B460A6496E6F3A /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = jazzy.css; path = docs/objc/css/jazzy.css; sourceTree = "<group>"; };
BDBCDA510AC5D75B8E85FC507A32EDCF /* TextInputState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TextInputState.h; sourceTree = "<group>"; };
BEF6FFEC8FABA086B2E0177D647C14B4 /* carat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = carat.png; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/img/carat.png; sourceTree = "<group>"; };
BFD3DB4BE740EC359FCAB1E28B738933 /* Pods-Styles_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Styles_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
C18312511F28ED1E07F4CBA566A90D28 /* Styles-Unit-Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Styles-Unit-Tests-Info.plist"; sourceTree = "<group>"; };
C1EEBDC4CC033E0AE872821288E12CD9 /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = highlight.css; path = docs/swift/css/highlight.css; sourceTree = "<group>"; };
C68F5E95C916A5ED1003C011705BD8EB /* search.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = search.json; path = docs/objc/search.json; sourceTree = "<group>"; };
C7062D7FBECD968AEFA6482481EC0BBD /* Styles-Unit-Tests */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Styles-Unit-Tests"; path = "Styles-Unit-Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
C889625CFD39A4E6A5C67246BFB19006 /* search.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = search.json; path = docs/swift/search.json; sourceTree = "<group>"; };
C8951A5FEABFAA028A736F3BC0869E5E /* UILabel(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = "UILabel(Styles).html"; path = "docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Categories/UILabel(Styles).html"; sourceTree = "<group>"; };
C93E01D239308059D0C10AD0DBABFD02 /* Structs.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Structs.html; path = docs/swift/Structs.html; sourceTree = "<group>"; };
C9E87D569DC8D811124881863946604D /* Pods-Styles_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Styles_Example.debug.xcconfig"; sourceTree = "<group>"; };
CAF87A347186690D2486216BACC3E56A /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = highlight.css; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/css/highlight.css; sourceTree = "<group>"; };
CDA69CADE23C75B36B4976249C0D8222 /* Categories.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Categories.html; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Categories.html; sourceTree = "<group>"; };
CDC3BBC22B0E9F55036CA0389E0D6409 /* First.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = First.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/First.html; sourceTree = "<group>"; };
CE4FE96C3E91C4FE92D088FE5DBD3192 /* Styles-Unit-Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Styles-Unit-Tests-resources.sh"; sourceTree = "<group>"; };
CF33F147582B79A4578B95A7F8907A9E /* Classes.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Classes.html; path = docs/swift/Classes.html; sourceTree = "<group>"; };
D1841F9569D4503B6B14765673C56E1B /* Property.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Property.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/ViewStyle/Property.html; sourceTree = "<group>"; };
D2A2787201A7F3EBB87C37E55AB38CBB /* dash.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = dash.png; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/img/dash.png; sourceTree = "<group>"; };
D3C8F13D342DC2E264CC13F5F9071120 /* dash.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = dash.png; path = docs/swift/img/dash.png; sourceTree = "<group>"; };
D3EAF09F1E001A3B4BF09ED1FC038B11 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
D442AD0D691C1DF2D5ADD0AB04508F66 /* UITextField(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = "UITextField(Styles).html"; path = "docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Categories/UITextField(Styles).html"; sourceTree = "<group>"; };
D553F2DC271854695889642184261E5D /* Range.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Range.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/Range.html; sourceTree = "<group>"; };
D9386D6FB2EA24A5854B61C196D15681 /* ParagraphStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ParagraphStyle.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Classes/TextStyle/ParagraphStyle.html; sourceTree = "<group>"; };
DBFA6590796E199D2AE138673A21F73A /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Enums.html; path = docs/swift/Enums.html; sourceTree = "<group>"; };
DC07979C2AF9C47ADE56FCAEF0A3DB08 /* Shadow.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Shadow.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Structs/Shadow.html; sourceTree = "<group>"; };
DD33C827F4C22CA43F1CED1A622F203B /* Structs.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Structs.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Structs.html; sourceTree = "<group>"; };
DE0BB45051A7AF2A03D8537231F4219E /* UIButton(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = "UIButton(Styles).html"; path = "docs/objc/Categories/UIButton(Styles).html"; sourceTree = "<group>"; };
DE8BEDCA5DA425F7F7F50C5AF7E92E7F /* Pods-Styles_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Styles_Example-umbrella.h"; sourceTree = "<group>"; };
E50C8B88E35B15FD2CC0CA1E73F4A30C /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Enums.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Enums.html; sourceTree = "<group>"; };
E7B1853CD810D3B903AFE474A2AD1ADB /* UIButton(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = "UIButton(Styles).html"; path = "docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Categories/UIButton(Styles).html"; sourceTree = "<group>"; };
E7FA7CD4547286885C1969E106408843 /* TextStyleTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextStyleTests.swift; path = Styles/Tests/TextStyleTests.swift; sourceTree = "<group>"; };
EAFA63931A0E4A652A7D5CE4014116D0 /* ViewStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ViewStyle.html; path = docs/swift/Classes/ViewStyle.html; sourceTree = "<group>"; };
EF25E461E14D7EF2E4E82C03846A144C /* TextInputState.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = TextInputState.html; path = docs/objc/docsets/Styles.docset/Contents/Resources/Documents/Enums/TextInputState.html; sourceTree = "<group>"; };
F184598C5E742E7B8FFFD085639C746D /* Pods-Styles_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Styles_Example-resources.sh"; sourceTree = "<group>"; };
F2F23D31299C049FA203B076C2BB87B9 /* UIOffset+Size.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIOffset+Size.swift"; sourceTree = "<group>"; };
F484736D09D14FB27EDF72AA437E3649 /* UITextField(Styles).html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = "UITextField(Styles).html"; path = "docs/objc/Categories/UITextField(Styles).html"; sourceTree = "<group>"; };
F4DF32696D471B78FAC8F5FAD5A40B23 /* carat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = carat.png; path = docs/objc/img/carat.png; sourceTree = "<group>"; };
F7A71CD3B530245AA2F8BCD51AC9BCF5 /* badge.svg */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = badge.svg; path = docs/objc/badge.svg; sourceTree = "<group>"; };
FA1909A251F47ED325F6700863E6163A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = docs/objc/docsets/Styles.docset/Contents/Info.plist; sourceTree = "<group>"; };
FC328B08A1ED7683A21C7D776550E5F2 /* UITextField+Styles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UITextField+Styles.h"; sourceTree = "<group>"; };
FD471E167452FE8D2A4C7C645F35B258 /* UIOffset.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = UIOffset.html; path = docs/swift/docsets/Styles.docset/Contents/Resources/Documents/Extensions/UIOffset.html; sourceTree = "<group>"; };
FE4C00689E817139C529CE46AF849FBD /* NSMutableParagraphStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = NSMutableParagraphStyle.html; path = docs/swift/Extensions/NSMutableParagraphStyle.html; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
3F46A7CEF85252CA8FFB2DF04882138F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4B6D9D601B4F923AEF57761B7B103E4C /* Foundation.framework in Frameworks */,
88B02CA86F9C0EBA4545BFF5BD3574BC /* Styles.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4029CEC8FAD6D8CDE37FAE9EBC5D1845 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5A8E15748B1B4F1AFBCACDE18B0E8815 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6237471C6125722E0DE502F1566C9CFB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
210D38D7E85152965E5F3235009DF87F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
02E4F7CFBD948A24605359B7E0F89999 /* Support Files */ = {
isa = PBXGroup;
children = (
33AFB41697E8DAC17614A4E84AD505A7 /* Info.plist */,
7B2A3137FABDCEFADC9FCE6A8A918008 /* Styles.modulemap */,
6D7F369FE55606D0306EA9C5EE66718F /* Styles.xcconfig */,
7CFE721723A7713A4096FB7ED6EAA680 /* Styles-dummy.m */,
65590EA96EB65F6527E5E838516BF544 /* Styles-prefix.pch */,
A17F26758B8C8F610E5D8004F089EF5D /* Styles-umbrella.h */,
949EC4665641BA0D5A4096E5112FEDA8 /* Styles-Unit-Tests-frameworks.sh */,
C18312511F28ED1E07F4CBA566A90D28 /* Styles-Unit-Tests-Info.plist */,
5949143569ACBDFA27E16A95F6D97B98 /* Styles-Unit-Tests-prefix.pch */,
CE4FE96C3E91C4FE92D088FE5DBD3192 /* Styles-Unit-Tests-resources.sh */,
428F7523FA453AE07F31AB622ED2714B /* Styles.unit.xcconfig */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/Styles";
sourceTree = "<group>";
};
7072B7554A486E4803533565273EA7A5 /* Matches */ = {
isa = PBXGroup;
children = (
75D636B27A3909BF2C37B7A2FB36EA29 /* Block.swift */,
01818DB1A7DB742C37A6022DA049C4E1 /* First.swift */,
31122CDA698504BDFB1569C61367A3AF /* Range.swift */,
776B8654D5867C723C42FF9C27084887 /* Regex.swift */,
);
name = Matches;
path = Styles/Classes/Matches;
sourceTree = "<group>";
};
7950D971E93850355170EF4ABEA3B37F /* Extensions */ = {
isa = PBXGroup;
children = (
66A6EBA02365A315E769B2D8EDBBDF1D /* Array+Styles.swift */,
25E29A41E6A87BE232AE98AEC32A0220 /* NSAttributedString+Mutable.swift */,
1103A84ED35933464CD190CB41D5DFD3 /* NSMutableParagraphStyle+TextStyle.swift */,
26ACF933809E934208E6F0CC76B80750 /* UIColor+Utils.swift */,
9D2EB5B205725800069426D8D72C4686 /* UIImage+Attachment.swift */,
3193E41C8F56FC80D668A44E77E98D69 /* UIImage+Colorize.swift */,
F2F23D31299C049FA203B076C2BB87B9 /* UIOffset+Size.swift */,
);
name = Extensions;
path = Styles/Classes/Extensions;
sourceTree = "<group>";
};
7A4697F41EF2557231FD836AD2434A8B /* Pods-Styles_Example */ = {
isa = PBXGroup;
children = (
32F51507323EA8324438A81D7A06608A /* Info.plist */,
7CD558B594129755460A3ADCE8FB3734 /* Pods-Styles_Example.modulemap */,
BFD3DB4BE740EC359FCAB1E28B738933 /* Pods-Styles_Example-acknowledgements.markdown */,
1F600D5C8375D6976D8D33CBA59579AE /* Pods-Styles_Example-acknowledgements.plist */,
25422082CBBE5892F1A7DA090D9750C5 /* Pods-Styles_Example-dummy.m */,
38998D66DDF5A96AF1E14C20D2426D70 /* Pods-Styles_Example-frameworks.sh */,
F184598C5E742E7B8FFFD085639C746D /* Pods-Styles_Example-resources.sh */,
DE8BEDCA5DA425F7F7F50C5AF7E92E7F /* Pods-Styles_Example-umbrella.h */,
C9E87D569DC8D811124881863946604D /* Pods-Styles_Example.debug.xcconfig */,
AD880FD1F52978F8BAA3A7EF87F39D2A /* Pods-Styles_Example.release.xcconfig */,
);
name = "Pods-Styles_Example";
path = "Target Support Files/Pods-Styles_Example";
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
92F338F1E54CD64D04622D90D2664781 /* Development Pods */,
BB52765B98FB0780EF35BCCFA8C80671 /* Frameworks */,
9E4D9EAE76DFF6FE29DE6604F66FA9DE /* Products */,
862FFF787256FDD163904A5540D6370B /* Targets Support Files */,
);
sourceTree = "<group>";
};
862FFF787256FDD163904A5540D6370B /* Targets Support Files */ = {
isa = PBXGroup;
children = (
7A4697F41EF2557231FD836AD2434A8B /* Pods-Styles_Example */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
92F338F1E54CD64D04622D90D2664781 /* Development Pods */ = {
isa = PBXGroup;
children = (
93FC386595EB865E2DBF810DD4F22E57 /* Styles */,
);
name = "Development Pods";
sourceTree = "<group>";
};
93FC386595EB865E2DBF810DD4F22E57 /* Styles */ = {
isa = PBXGroup;
children = (
36B1FE6C75132E93002767A5A9B49836 /* Shadow.swift */,
860CA5048AC2FD5124A4D979A385475F /* Styles.h */,
092AC87F24E14872A785A02888E64EEB /* SwitchStyle.swift */,
82AE37FCD6C73910FD55E799211BF9B6 /* TextDecoration.swift */,
670B8D7F1FF02DB65C9FA257A73C2B14 /* TextEffect.swift */,
B18B2181FD803D7F150E173060DBCFC4 /* TextStyle.swift */,
6B7403C925728485DD269CC4631B9296 /* ViewStyle.swift */,
7950D971E93850355170EF4ABEA3B37F /* Extensions */,
7072B7554A486E4803533565273EA7A5 /* Matches */,
AC894A2DBC9DF1F7C6EC2D6F15A9FE62 /* Pod */,
02E4F7CFBD948A24605359B7E0F89999 /* Support Files */,
F0EC9F67C2755BDA5C0E32B248FD35C0 /* Tests */,
DBBEE824178078BD060AB1445FEC5461 /* UIElement+Extensions */,
);
name = Styles;
path = ../..;
sourceTree = "<group>";
};
9E4D9EAE76DFF6FE29DE6604F66FA9DE /* Products */ = {
isa = PBXGroup;
children = (
40EA5E9F944CF3C551B4A661A6834D27 /* Pods_Styles_Example.framework */,
666A0460CCB2754AC7E7B07E6425D93C /* Styles.framework */,
C7062D7FBECD968AEFA6482481EC0BBD /* Styles-Unit-Tests */,
);
name = Products;
sourceTree = "<group>";
};
AC894A2DBC9DF1F7C6EC2D6F15A9FE62 /* Pod */ = {
isa = PBXGroup;
children = (
F7A71CD3B530245AA2F8BCD51AC9BCF5 /* badge.svg */,
2B72EF411CE9A700CFF77CF11D1CC506 /* badge.svg */,
8D6EC5752115FBCE819C5F0289619729 /* Block.html */,
A1344A1DDB96351DFF68D841CF215AEA /* Block.html */,
76CDFA15A182AD527DD753B1C667B004 /* carat.png */,
F4DF32696D471B78FAC8F5FAD5A40B23 /* carat.png */,
BEF6FFEC8FABA086B2E0177D647C14B4 /* carat.png */,
283CB4480765B0FA1585DDC374F8A4B0 /* carat.png */,
CDA69CADE23C75B36B4976249C0D8222 /* Categories.html */,
97554826F288E9AEA6B81B4DB423FDF9 /* Categories.html */,
A64C6A487AD3C58DCF2CAA1AE656600C /* Classes.html */,
CF33F147582B79A4578B95A7F8907A9E /* Classes.html */,
D2A2787201A7F3EBB87C37E55AB38CBB /* dash.png */,
8ABA0F820BC89F38C50210BBEB4DAC3A /* dash.png */,
D3C8F13D342DC2E264CC13F5F9071120 /* dash.png */,
2FF33D63E438481C0F496C10BB4E8544 /* dash.png */,
664FB7DA264C6CA084B3982462AE4110 /* docSet.dsidx */,
808390622F971DA22153417C203204A5 /* docSet.dsidx */,
DBFA6590796E199D2AE138673A21F73A /* Enums.html */,
5877AA4B6493C3BB00F89195445056AE /* Enums.html */,
4E9D9C13027B43C4D321791E3FBB75EB /* Enums.html */,
E50C8B88E35B15FD2CC0CA1E73F4A30C /* Enums.html */,
4DCC5C1642D1514EEB22318D3CD78545 /* Extensions.html */,
4CE8338595C6D05CEA501B09E93508E5 /* Extensions.html */,
16BFBCA9566A2CECB160D98847C009F9 /* First.html */,
CDC3BBC22B0E9F55036CA0389E0D6409 /* First.html */,
9A566989D6E8DEFBC7F5CF38156F8B33 /* gh.png */,
20622F090072AD9E4401C39BAFB5AFF0 /* gh.png */,
8AD3C8302678325B7BDCAA6BFA180344 /* gh.png */,
AC3C0259F6F3324FA64039539892BB71 /* gh.png */,
19012FF11BE9C5CC2248C6E4138B0AC2 /* highlight.css */,
C1EEBDC4CC033E0AE872821288E12CD9 /* highlight.css */,
CAF87A347186690D2486216BACC3E56A /* highlight.css */,
8C32FF7F843B2CDA8C9E587E9E2E1674 /* highlight.css */,
AB93E8839292AE6CDABDAA373CD0A49D /* index.html */,
8EF5D0AC58DCE2E76BBCAEADD7558D47 /* index.html */,
9AF71E12ED20118AEADEDBCBDE51E861 /* index.html */,
9ADB2B7E12B39EDD47F99B655193F123 /* index.html */,
B4678AF44699EE0893E185EC9E134D15 /* Info.plist */,
FA1909A251F47ED325F6700863E6163A /* Info.plist */,
BC942EA64653BF9B59B460A6496E6F3A /* jazzy.css */,
09374C0F780DFB3EA3C297C56A0DC854 /* jazzy.css */,
AE3F8F156F9318CDF48E8E9483DF7A3F /* jazzy.css */,
9A6BE85CF6F3B9E542FF3D9D27D04C73 /* jazzy.css */,
82E0D2D86E1B3E1FFFED78BEBABA9DE2 /* jazzy.js */,
6BEB48CE6AA9D94141013FB515C41F39 /* jazzy.js */,
952C8085AFFD4F24FFC8D88FF0531E7F /* jazzy.js */,
B99B6D77603300C89B9FDAFD2DED2308 /* jazzy.js */,
38152076C5E85A9081D63344F63C913F /* jquery.min.js */,
250F8BEA57FB8AD8506C6A44A72393CB /* jquery.min.js */,
4838934846EA27ACEB90FEEF5E746A48 /* jquery.min.js */,
132356CF9673AE8793ACDDD0BAB5027D /* jquery.min.js */,
D3EAF09F1E001A3B4BF09ED1FC038B11 /* LICENSE */,
2065D371B9B63B9540C43ABEE5ECCFBA /* Match.html */,
37213598031FA269808B11D0655FEEC6 /* Match.html */,
FE4C00689E817139C529CE46AF849FBD /* NSMutableParagraphStyle.html */,
3C5CDBB6C2AE23D4C2CFA066DA564DCF /* NSMutableParagraphStyle.html */,
D9386D6FB2EA24A5854B61C196D15681 /* ParagraphStyle.html */,
8016AB32A2BDFBA60A1D7F0245AB2C70 /* ParagraphStyle.html */,
3A281F591E3F9BF2028F4A74CBEA70F3 /* Pattern.html */,
46AEE20D1803EB786B9161D8AA486C4E /* Pattern.html */,
28DA0894C137698EEBB992AC679AF2EE /* Property.html */,
63059331CECD3751B978FB9B89D95FF4 /* Property.html */,
08B4E710CBD881537B50102BF264B0BF /* Property.html */,
D1841F9569D4503B6B14765673C56E1B /* Property.html */,
A35EE910AD8DCDD0B63E468C610D6FE4 /* Protocols.html */,
651EE46675F02AE43FAA00ED746E4515 /* Protocols.html */,
D553F2DC271854695889642184261E5D /* Range.html */,
3CC7E7631D061243BA5257FFB0988066 /* Range.html */,
A7F7B8A3D3998FDD9854227D017DC2AA /* README.md */,
A30D21FDAFCF872368781B052D7C7461 /* Regex.html */,
7EDDB4A986980B684ECB7411080797F4 /* Regex.html */,
C889625CFD39A4E6A5C67246BFB19006 /* search.json */,
C68F5E95C916A5ED1003C011705BD8EB /* search.json */,
0809CE14289C3635C6B449F9883AC024 /* search.json */,
327536734807348FC23722ECCBFEBDD1 /* search.json */,
DC07979C2AF9C47ADE56FCAEF0A3DB08 /* Shadow.html */,
27E7C965A5C4F4D778669D934C0A7545 /* Shadow.html */,
DD33C827F4C22CA43F1CED1A622F203B /* Structs.html */,
C93E01D239308059D0C10AD0DBABFD02 /* Structs.html */,
1CF1E617EC4226B15FD3FB83F55E3CF3 /* Style.html */,
12DD9A7024F5FE8A6CDEF42511CF40F3 /* Style.html */,
91FD835D03A45BA9F84E0A4B660C02FA /* Styles.podspec */,
ACE3AC3D764A5343D57365086A666100 /* Styles.tgz */,
3B058CE6EDE66D3AF33FF8F54ACA50B3 /* Styles.tgz */,
0058E6ECD89EE0983BC7E0BA84C9E6F6 /* TextDecoration.html */,
42EAF33F1FA9BC9C5D62E6656D2869A5 /* TextDecoration.html */,
30058D4F185BE623F838804B6498838F /* TextEffect.html */,
2EC86026A6E2A1377342135A96F54AA0 /* TextEffect.html */,
4A35E6934F6D23DF382D3B13BAB48275 /* TextInputState.html */,
EF25E461E14D7EF2E4E82C03846A144C /* TextInputState.html */,
0AB4BADAC97A7D3DFB9BE31188EAA16D /* TextStyle.html */,
5A9DE9581268747C591486FE86F7B620 /* TextStyle.html */,
DE0BB45051A7AF2A03D8537231F4219E /* UIButton(Styles).html */,
E7B1853CD810D3B903AFE474A2AD1ADB /* UIButton(Styles).html */,
86AD716A54179C0BF6642957BD71BA24 /* UILabel(Styles).html */,
C8951A5FEABFAA028A736F3BC0869E5E /* UILabel(Styles).html */,
A37BBA889F8198E95F5B3374F853C0B7 /* UINavigationBar(TextStyle).html */,
67E4775C9E7A69396495FE3C418FE865 /* UINavigationBar(TextStyle).html */,
FD471E167452FE8D2A4C7C645F35B258 /* UIOffset.html */,
3C7823CE71EC62E39C7420C60E8BEFD1 /* UIOffset.html */,
D442AD0D691C1DF2D5ADD0AB04508F66 /* UITextField(Styles).html */,
F484736D09D14FB27EDF72AA437E3649 /* UITextField(Styles).html */,
4E4179561E47A48393395354AAD02719 /* UITextView(Styles).html */,
98122E0E6FC2EEE25EA1AD7C402582C1 /* UITextView(Styles).html */,
456D4F9CCE36A5F24885F14F1A9BC4E0 /* UIView(Styles).html */,
56A359A018162F18F45C2C79EE913D7A /* UIView(Styles).html */,
A39D61A00D1E02B0695AF1E21165DEDE /* undocumented.json */,
6CF7878D3D387075AA8E038B7F3EB74E /* undocumented.json */,
7C0D83866316EDC4F997DDB4358DF6F3 /* ViewStyle.html */,
EAFA63931A0E4A652A7D5CE4014116D0 /* ViewStyle.html */,
51A252479315AD211A4E7E065F88D6EF /* WritingDirectionOverride.html */,
AF19DD37A150AED3A641579FFAC6C73D /* WritingDirectionOverride.html */,
);
name = Pod;
sourceTree = "<group>";
};
BB52765B98FB0780EF35BCCFA8C80671 /* Frameworks */ = {
isa = PBXGroup;
children = (
A5F06609F447D5845B19F07A1D36D57C /* Styles.framework */,
BF6FF4A3956E21686928DF1E92D6BCB3 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
BF6FF4A3956E21686928DF1E92D6BCB3 /* iOS */ = {
isa = PBXGroup;
children = (
95609505D6C8C6CE32A0E8F6189434BE /* Foundation.framework */,
);
name = iOS;
sourceTree = "<group>";
};
DBBEE824178078BD060AB1445FEC5461 /* UIElement+Extensions */ = {
isa = PBXGroup;
children = (
2EEF2C621486B96A46360966B204E77C /* Swizzle.h */,
99260C75406F8526D6EBB5E17884A6D2 /* Swizzle.m */,
BDBCDA510AC5D75B8E85FC507A32EDCF /* TextInputState.h */,
3BAC2ED7471CDDAFF3F31B226D05E4A9 /* UIButton+Styles.h */,
96508FCF92ABBEBC5BC3EA98B7BA3297 /* UIButton+Styles.m */,
265A6897C1B8BF3951D9D3B7B5EC3B47 /* UILabel+Styles.h */,
9EAC79940FEB7A9D2A00BDE4A6911FEB /* UILabel+Styles.m */,
6FB87E3C989DEE79DBE64D58852DB8EC /* UINavigationBar+Styles.h */,
5391517F25CF9861534104FB182CBB14 /* UINavigationBar+Styles.m */,
AA1912D5C396B47F21D81149D96A167D /* UISwitch+Styles.h */,
38927F565972AB43D41E224816AC3F52 /* UISwitch+Styles.m */,
FC328B08A1ED7683A21C7D776550E5F2 /* UITextField+Styles.h */,
1E02B94B908D572E5DFC21197B826655 /* UITextField+Styles.m */,
54B20204F0F1750D0A8B0D89085FEF1A /* UITextView+Styles.h */,
83529D903409B3657E2F25CE6E9380F3 /* UITextView+Styles.m */,
669897FCA7A90C35D872B21E849CD8D4 /* UIView+Styles.h */,
8D632892FB66A6E77E31EFBEFB55BDF5 /* UIView+Styles.m */,
);
name = "UIElement+Extensions";
path = "Styles/Classes/UIElement+Extensions";
sourceTree = "<group>";
};
F0EC9F67C2755BDA5C0E32B248FD35C0 /* Tests */ = {
isa = PBXGroup;
children = (
E7FA7CD4547286885C1969E106408843 /* TextStyleTests.swift */,
94F82D0E8D1E131584D2DEE715376F3C /* ViewStyleTests.swift */,
);
name = Tests;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
005410EE3DCC9EB03C25B4D872B4235C /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
0BEFB020D2A65C8C54FA8B9BAF5AF782 /* Pods-Styles_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
90B269CC3146D6A6A5C61E061C3B212C /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
6A9C72618F83959A5DE70EE683438C46 /* Styles-umbrella.h in Headers */,
6DF5CA33F0A8EA178BDE488A4745BCDA /* Styles.h in Headers */,
BCF79FBF01978CB41AC6DA1AC634534F /* Swizzle.h in Headers */,
E0EF64969F85364369EBAAE9B512C0A8 /* TextInputState.h in Headers */,
00905F99F8BA2ED161ADA38966F6909A /* UIButton+Styles.h in Headers */,
833621F59ACB68A6F84F861C3707D404 /* UILabel+Styles.h in Headers */,
34DF3B952D3C67B8CB1D2B9AC4CF69DA /* UINavigationBar+Styles.h in Headers */,
58D883EACEE428F2A7F45CE0A1200249 /* UISwitch+Styles.h in Headers */,
4884E46887F084CAE38C5DD585EFC458 /* UITextField+Styles.h in Headers */,
DBDA1F9F665975E7B1EDEF2E990C6631 /* UITextView+Styles.h in Headers */,
91735DB85F70789AE1229E2D89BC76CF /* UIView+Styles.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
27C84E1FD143F448D565BD4420907B2E /* Pods-Styles_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 58DEA70C86C2B36277CC0F8782F6F4EF /* Build configuration list for PBXNativeTarget "Pods-Styles_Example" */;
buildPhases = (
9DDE8EB9B23567C8F8482FEF472A0BA2 /* Sources */,
4029CEC8FAD6D8CDE37FAE9EBC5D1845 /* Frameworks */,
005410EE3DCC9EB03C25B4D872B4235C /* Headers */,
);
buildRules = (
);
dependencies = (
B38B03DC9483A5BD16321273D5E407C6 /* PBXTargetDependency */,
);
name = "Pods-Styles_Example";
productName = "Pods-Styles_Example";
productReference = 40EA5E9F944CF3C551B4A661A6834D27 /* Pods_Styles_Example.framework */;
productType = "com.apple.product-type.framework";
};
3AA71C17C4125DCF5B8C53FED1E03A07 /* Styles */ = {
isa = PBXNativeTarget;
buildConfigurationList = D4FED8998A31093E9EBCAA34EB58C808 /* Build configuration list for PBXNativeTarget "Styles" */;
buildPhases = (
C8726E7D2E1EDC7E0A76EE7282DF93D2 /* Sources */,
6237471C6125722E0DE502F1566C9CFB /* Frameworks */,
90B269CC3146D6A6A5C61E061C3B212C /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Styles;
productName = Styles;
productReference = 666A0460CCB2754AC7E7B07E6425D93C /* Styles.framework */;
productType = "com.apple.product-type.framework";
};
FA2C8774530145507780D5A886C9A93E /* Styles-Unit-Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 08E817D371F9108020B266E93E50269E /* Build configuration list for PBXNativeTarget "Styles-Unit-Tests" */;
buildPhases = (
D192850AE7270DD6159DE3B3406D8833 /* Sources */,
3F46A7CEF85252CA8FFB2DF04882138F /* Frameworks */,
804D7A6F227B790CB486996621F0C8AE /* [CP] Embed Pods Frameworks */,
B5C6BCE70650402325548C706955317D /* [CP] Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
FC8DD48D69B2FEBB46B4F86F07EF339D /* PBXTargetDependency */,
);
name = "Styles-Unit-Tests";
productName = "Styles-Unit-Tests";
productReference = C7062D7FBECD968AEFA6482481EC0BBD /* Styles-Unit-Tests */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* 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 = 9E4D9EAE76DFF6FE29DE6604F66FA9DE /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
27C84E1FD143F448D565BD4420907B2E /* Pods-Styles_Example */,
3AA71C17C4125DCF5B8C53FED1E03A07 /* Styles */,
FA2C8774530145507780D5A886C9A93E /* Styles-Unit-Tests */,
);
};
/* End PBXProject section */
/* Begin PBXShellScriptBuildPhase section */
804D7A6F227B790CB486996621F0C8AE /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Styles/Styles-Unit-Tests-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/Styles/Styles.framework",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Styles.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Styles/Styles-Unit-Tests-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
B5C6BCE70650402325548C706955317D /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Styles/Styles-Unit-Tests-resources.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
9DDE8EB9B23567C8F8482FEF472A0BA2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C5491848003C85CEB424075D9E017E0 /* Pods-Styles_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C8726E7D2E1EDC7E0A76EE7282DF93D2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
CF05817C1DDE5F1C438D2E2382E9CE4E /* Array+Styles.swift in Sources */,
CBBF2D57C9B2BF85B375117661D190DD /* Block.swift in Sources */,
DE9F8031665DB3D7FAF5CB89EFE9A180 /* First.swift in Sources */,
509B91949FF972A16D0FF5AD39812F51 /* NSAttributedString+Mutable.swift in Sources */,
A8B27B2DA6F4F0CD2FDFAA5CBDA5BD6A /* NSMutableParagraphStyle+TextStyle.swift in Sources */,
A72945500DB62906F440BFD393D62778 /* Range.swift in Sources */,
918E9D430C82D1F685E364AC2BAB2A4B /* Regex.swift in Sources */,
27CEA56EC4DB4070931A4CECA1385D7A /* Shadow.swift in Sources */,
FC5AB57C16CF03689D9F5F1F5EF28EB7 /* Styles-dummy.m in Sources */,
893E8B7D1B20DC1B6F5DACE3C5724DF6 /* SwitchStyle.swift in Sources */,
CDD60F1E2CD948287AED0E61D17A7134 /* Swizzle.m in Sources */,
B4C86FA3A6824EB1FBED407D1F3CEE0B /* TextDecoration.swift in Sources */,
912448FF74B6AB5BE9D7696F36AAD656 /* TextEffect.swift in Sources */,
BFCB6D08822DADE877B173B477BB1E60 /* TextStyle.swift in Sources */,
08217DCD8BAF40FC81477CDD9D3A72CC /* UIButton+Styles.m in Sources */,
34F55145E0CA274C22F7F44D13D83DBB /* UIColor+Utils.swift in Sources */,
357DAFBE0667D447B4414CA4A7492927 /* UIImage+Attachment.swift in Sources */,
EAA37A9D9088798A9D9BF40BE6087352 /* UIImage+Colorize.swift in Sources */,
ABEBA31F977624E28320931044432FD5 /* UILabel+Styles.m in Sources */,
7D412B2DEC8B8393B0B8EC7F094A810C /* UINavigationBar+Styles.m in Sources */,
5A9138403DAFEF309C45F3D9F7CA7FBD /* UIOffset+Size.swift in Sources */,
0E28D0E9334A6978E7CCFBD6B58C898C /* UISwitch+Styles.m in Sources */,
FFBD3BED31D74C4C67F2C95186B5F8CA /* UITextField+Styles.m in Sources */,
8AE58E54B464C27954521DA03649E830 /* UITextView+Styles.m in Sources */,
2E8648A3BAC6323BD551AE96C077D0AC /* UIView+Styles.m in Sources */,
2BDE316C4DB01A80A31D57A54C5C8B84 /* ViewStyle.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D192850AE7270DD6159DE3B3406D8833 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2DFB8CF181A8CFD3C78A2A33E18A514E /* TextStyleTests.swift in Sources */,
E24DE1BA9617DD88CD3F775C2958D6FB /* ViewStyleTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
B38B03DC9483A5BD16321273D5E407C6 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Styles;
target = 3AA71C17C4125DCF5B8C53FED1E03A07 /* Styles */;
targetProxy = ABA3DAD1F1D5197A800DEDB34866A63E /* PBXContainerItemProxy */;
};
FC8DD48D69B2FEBB46B4F86F07EF339D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Styles;
target = 3AA71C17C4125DCF5B8C53FED1E03A07 /* Styles */;
targetProxy = 92A746B34A86B48E7E7CA3A7E40EB6DA /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
1130B742B56760A91F2640042F422BE4 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C9E87D569DC8D811124881863946604D /* Pods-Styles_Example.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CLANG_ENABLE_OBJC_WEAK = 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-Styles_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.2;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-Styles_Example/Pods-Styles_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;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
30D948AE62C04225F8DEF8734A4C5A26 /* 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 = 11.2;
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SYMROOT = "${SRCROOT}/../build";
};
name = Release;
};
3DF5F35494E0A85D5C1CA83D02B058AE /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 6D7F369FE55606D0306EA9C5EE66718F /* Styles.xcconfig */;
buildSettings = {
CLANG_ENABLE_OBJC_WEAK = 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";
GCC_PREFIX_HEADER = "Target Support Files/Styles/Styles-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Styles/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/Styles/Styles.modulemap";
PRODUCT_MODULE_NAME = Styles;
PRODUCT_NAME = Styles;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 4.1;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
7C218562F838F750CAF731F82A225A83 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 428F7523FA453AE07F31AB622ED2714B /* Styles.unit.xcconfig */;
buildSettings = {
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGNING_ALLOWED = YES;
CODE_SIGNING_REQUIRED = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
GCC_PREFIX_HEADER = "Target Support Files/Styles/Styles-Unit-Tests-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Styles/Styles-Unit-Tests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
PRODUCT_NAME = "Styles-Unit-Tests";
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 4.1;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
8C8456004AD296E152962B19EF9AB543 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 428F7523FA453AE07F31AB622ED2714B /* Styles.unit.xcconfig */;
buildSettings = {
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGNING_ALLOWED = YES;
CODE_SIGNING_REQUIRED = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
GCC_PREFIX_HEADER = "Target Support Files/Styles/Styles-Unit-Tests-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Styles/Styles-Unit-Tests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-lswiftSwiftOnoneSupport",
);
PRODUCT_NAME = "Styles-Unit-Tests";
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.1;
};
name = Debug;
};
9E88537B08ED4D6EB44DBA7BC8D56A35 /* 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;