-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1466 lines (1455 loc) · 89 KB
/
project.pbxproj
File metadata and controls
1466 lines (1455 loc) · 89 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 */
25032B8A1F9590970070F94C /* JCNA3Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 25032B891F9590970070F94C /* JCNA3Controller.m */; };
25032B901F95C96F0070F94C /* JCND1Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 25032B8F1F95C96F0070F94C /* JCND1Controller.m */; };
25032B931F95C9820070F94C /* JCND2Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 25032B921F95C9820070F94C /* JCND2Controller.m */; };
25122CF11F94B3C40091B292 /* JCNC1Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 25122CF01F94B3C40091B292 /* JCNC1Controller.m */; };
25122CF41F94B4100091B292 /* JCNC2Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 25122CF31F94B4100091B292 /* JCNC2Controller.m */; };
2518178F1FD150F80092BBEA /* JCChainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2518178E1FD150F80092BBEA /* JCChainViewController.m */; };
251D79D31FA330B800636279 /* JCAttributed.m in Sources */ = {isa = PBXBuildFile; fileRef = 251D79D21FA330B800636279 /* JCAttributed.m */; };
25236FE51F945E100064117E /* JCTableController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25236FE41F945E100064117E /* JCTableController.m */; };
25236FE81F945E420064117E /* JCNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25236FE71F945E420064117E /* JCNavigationController.m */; };
25236FEB1F945F2E0064117E /* JCTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25236FEA1F945F2E0064117E /* JCTabBarController.m */; };
25236FEE1F945F6F0064117E /* JCRootNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25236FED1F945F6F0064117E /* JCRootNavigationController.m */; };
25236FF11F94602B0064117E /* JCRootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25236FF01F94602B0064117E /* JCRootViewController.m */; };
25236FF51F94624F0064117E /* JCNavigationDemo.m in Sources */ = {isa = PBXBuildFile; fileRef = 25236FF41F94624F0064117E /* JCNavigationDemo.m */; };
252370051F946EAF0064117E /* JCNA1Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 252370041F946EAF0064117E /* JCNA1Controller.m */; };
252370081F9470EE0064117E /* JCNA2Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 252370071F9470EE0064117E /* JCNA2Controller.m */; };
2523700C1F94721A0064117E /* JCNB1Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 2523700B1F94721A0064117E /* JCNB1Controller.m */; };
258258431F99CD1100E007E7 /* JCSRootController.m in Sources */ = {isa = PBXBuildFile; fileRef = 258258421F99CD1100E007E7 /* JCSRootController.m */; };
2582584A1F99E4B600E007E7 /* JCThemeManage.m in Sources */ = {isa = PBXBuildFile; fileRef = 258258491F99E4B600E007E7 /* JCThemeManage.m */; };
2582584D1F99F8EE00E007E7 /* JCSkinSetupController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2582584C1F99F8EE00E007E7 /* JCSkinSetupController.m */; };
25B46C0E1F9856F00026AFAD /* NSArray+JCBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B731F9856F00026AFAD /* NSArray+JCBlock.m */; };
25B46C0F1F9856F00026AFAD /* NSBundle+JCBundle.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B761F9856F00026AFAD /* NSBundle+JCBundle.m */; };
25B46C101F9856F00026AFAD /* NSData+JCData.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B791F9856F00026AFAD /* NSData+JCData.m */; };
25B46C111F9856F00026AFAD /* NSDate+JCDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B7C1F9856F00026AFAD /* NSDate+JCDate.m */; };
25B46C121F9856F00026AFAD /* NSDictionary+JCBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B7F1F9856F00026AFAD /* NSDictionary+JCBlock.m */; };
25B46C131F9856F00026AFAD /* NSException+JCException.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B821F9856F00026AFAD /* NSException+JCException.m */; };
25B46C141F9856F00026AFAD /* NSFileManager+JCFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B851F9856F00026AFAD /* NSFileManager+JCFileManager.m */; };
25B46C151F9856F00026AFAD /* NSInvocation+JCInvocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B881F9856F00026AFAD /* NSInvocation+JCInvocation.m */; };
25B46C161F9856F00026AFAD /* NSMutableAttributedString+JCAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B8B1F9856F00026AFAD /* NSMutableAttributedString+JCAttributedString.m */; };
25B46C171F9856F00026AFAD /* NSNotificationCenter+JCNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B8E1F9856F00026AFAD /* NSNotificationCenter+JCNotificationCenter.m */; };
25B46C181F9856F00026AFAD /* NSNumber+JCNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B911F9856F00026AFAD /* NSNumber+JCNumber.m */; };
25B46C191F9856F00026AFAD /* NSObject+JCObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B941F9856F00026AFAD /* NSObject+JCObject.m */; };
25B46C1A1F9856F00026AFAD /* NSParagraphStyle+JCText.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B971F9856F00026AFAD /* NSParagraphStyle+JCText.m */; };
25B46C1B1F9856F00026AFAD /* NSString+JCString.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B9A1F9856F00026AFAD /* NSString+JCString.m */; };
25B46C1C1F9856F00026AFAD /* NSTimer+JCBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46B9D1F9856F00026AFAD /* NSTimer+JCBlock.m */; };
25B46C1D1F9856F00026AFAD /* NSURL+JCURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BA01F9856F00026AFAD /* NSURL+JCURL.m */; };
25B46C1E1F9856F00026AFAD /* CADisplayLink+JCToRunLoop.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BA41F9856F00026AFAD /* CADisplayLink+JCToRunLoop.m */; };
25B46C1F1F9856F00026AFAD /* CALayer+JCLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BA61F9856F00026AFAD /* CALayer+JCLayer.m */; };
25B46C201F9856F00026AFAD /* JCGraphicsUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BA81F9856F00026AFAD /* JCGraphicsUtilities.m */; };
25B46C211F9856F00026AFAD /* UIApplication+JCApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BAB1F9856F00026AFAD /* UIApplication+JCApplication.m */; };
25B46C221F9856F00026AFAD /* UIBarButtonItem+JCBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BAE1F9856F00026AFAD /* UIBarButtonItem+JCBlock.m */; };
25B46C231F9856F00026AFAD /* UIBarItem+JCBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BB11F9856F00026AFAD /* UIBarItem+JCBarItem.m */; };
25B46C241F9856F00026AFAD /* UIBezierPath+JCBezierPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BB41F9856F00026AFAD /* UIBezierPath+JCBezierPath.m */; };
25B46C251F9856F00026AFAD /* UIButton+JCButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BB71F9856F00026AFAD /* UIButton+JCButton.m */; };
25B46C261F9856F00026AFAD /* UIColor+JCColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BBA1F9856F00026AFAD /* UIColor+JCColor.m */; };
25B46C271F9856F00026AFAD /* UIColor+JCSeries.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BBC1F9856F00026AFAD /* UIColor+JCSeries.m */; };
25B46C281F9856F00026AFAD /* UIControl+JCControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BBF1F9856F00026AFAD /* UIControl+JCControl.m */; };
25B46C291F9856F00026AFAD /* UIDevice+JCDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BC21F9856F00026AFAD /* UIDevice+JCDevice.m */; };
25B46C2A1F9856F00026AFAD /* UIFont+JCScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BC61F9856F00026AFAD /* UIFont+JCScale.m */; };
25B46C2B1F9856F00026AFAD /* UIGestureRecognizer+JCBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BC91F9856F00026AFAD /* UIGestureRecognizer+JCBlock.m */; };
25B46C2C1F9856F00026AFAD /* UIImage+JCImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BCC1F9856F00026AFAD /* UIImage+JCImage.m */; };
25B46C2D1F9856F00026AFAD /* UIImageView+JCImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BCF1F9856F00026AFAD /* UIImageView+JCImageView.m */; };
25B46C2E1F9856F00026AFAD /* UILabel+JCLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BD21F9856F00026AFAD /* UILabel+JCLabel.m */; };
25B46C2F1F9856F00026AFAD /* UINavigationController+JCNavigationAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BD51F9856F00026AFAD /* UINavigationController+JCNavigationAttributes.m */; };
25B46C301F9856F00026AFAD /* UINavigationItem+JCLoading.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BD81F9856F00026AFAD /* UINavigationItem+JCLoading.m */; };
25B46C311F9856F00026AFAD /* UIResponder+JCResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BDB1F9856F00026AFAD /* UIResponder+JCResponder.m */; };
25B46C321F9856F00026AFAD /* UIScreen+JCScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BDE1F9856F00026AFAD /* UIScreen+JCScreen.m */; };
25B46C331F9856F00026AFAD /* UIScrollView+JCScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BE11F9856F00026AFAD /* UIScrollView+JCScrollView.m */; };
25B46C341F9856F00026AFAD /* UITabBarController+JCTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BE41F9856F00026AFAD /* UITabBarController+JCTabBarController.m */; };
25B46C351F9856F00026AFAD /* UITableView+JCPlaceholder.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BE71F9856F00026AFAD /* UITableView+JCPlaceholder.m */; };
25B46C361F9856F00026AFAD /* UITableViewCell+JCSeparator.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BEA1F9856F00026AFAD /* UITableViewCell+JCSeparator.m */; };
25B46C371F9856F00026AFAD /* UITextField+JCTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BED1F9856F00026AFAD /* UITextField+JCTextField.m */; };
25B46C381F9856F00026AFAD /* UITextView+JCTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BF01F9856F00026AFAD /* UITextView+JCTextView.m */; };
25B46C391F9856F00026AFAD /* UIView+JCView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BF31F9856F00026AFAD /* UIView+JCView.m */; };
25B46C3A1F9856F00026AFAD /* UIViewController+JCViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BF61F9856F00026AFAD /* UIViewController+JCViewController.m */; };
25B46C3B1F9856F00026AFAD /* UIVisualEffectView+JCVisualEffect.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BF91F9856F00026AFAD /* UIVisualEffectView+JCVisualEffect.m */; };
25B46C3C1F9856F00026AFAD /* UIWebView+JCHTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BFC1F9856F00026AFAD /* UIWebView+JCHTML.m */; };
25B46C3D1F9856F00026AFAD /* UIWebView+JCJavaScript.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46BFE1F9856F00026AFAD /* UIWebView+JCJavaScript.m */; };
25B46C3E1F9856F00026AFAD /* UIWebView+JCProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46C001F9856F00026AFAD /* UIWebView+JCProgress.m */; };
25B46C3F1F9856F00026AFAD /* JCKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46C031F9856F00026AFAD /* JCKeyboardManager.m */; };
25B46C401F9856F00026AFAD /* UINavigationController+JCExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46C0A1F9856F00026AFAD /* UINavigationController+JCExtension.m */; };
25B46C411F9856F00026AFAD /* UIView+JCLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B46C0D1F9856F00026AFAD /* UIView+JCLayout.m */; };
25C942771F8CB6E6006E3723 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C942761F8CB6E6006E3723 /* main.m */; };
25C9427A1F8CB6E6006E3723 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C942791F8CB6E6006E3723 /* AppDelegate.m */; };
25C942801F8CB6E6006E3723 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 25C9427E1F8CB6E6006E3723 /* Main.storyboard */; };
25C942821F8CB6E6006E3723 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 25C942811F8CB6E6006E3723 /* Assets.xcassets */; };
25C942851F8CB6E6006E3723 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 25C942831F8CB6E6006E3723 /* LaunchScreen.storyboard */; };
25C942971F8CB81B006E3723 /* JCViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C942961F8CB81B006E3723 /* JCViewController.m */; };
25F1D7EC1FA7605600C18E7F /* UIView+JCTheme.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F1D7EB1FA7605600C18E7F /* UIView+JCTheme.m */; };
25F6136D1FE9454000E58B2D /* JCChain.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F6136C1FE9454000E58B2D /* JCChain.m */; };
25FC15AC1FEAB0440055ACC5 /* JCArchivedModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15AB1FEAB0440055ACC5 /* JCArchivedModel.m */; };
25FC15B21FEAB05E0055ACC5 /* JCClassInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15AF1FEAB05E0055ACC5 /* JCClassInfo.m */; };
25FC15B31FEAB05E0055ACC5 /* NSObject+JCJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15B11FEAB05E0055ACC5 /* NSObject+JCJSON.m */; };
25FC15BE1FEAB08D0055ACC5 /* JCWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15BD1FEAB08D0055ACC5 /* JCWeakProxy.m */; };
25FC15C31FEAB1280055ACC5 /* JCQRCodeScanView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15C21FEAB1280055ACC5 /* JCQRCodeScanView.m */; };
25FC15C91FEAB15E0055ACC5 /* JCToast.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15C71FEAB15E0055ACC5 /* JCToast.m */; };
25FC15CA1FEAB15E0055ACC5 /* JCAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15C81FEAB15E0055ACC5 /* JCAlertController.m */; };
25FC15D01FEAB1B90055ACC5 /* JCImageBrowseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15CD1FEAB1B90055ACC5 /* JCImageBrowseView.m */; };
25FC15D11FEAB1B90055ACC5 /* UTImageBrowseController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15CF1FEAB1B90055ACC5 /* UTImageBrowseController.m */; };
25FC15D41FEAB2400055ACC5 /* UTAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15D31FEAB2400055ACC5 /* UTAlert.m */; };
25FC15D71FEAB2630055ACC5 /* UTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC15D61FEAB2630055ACC5 /* UTTextView.m */; };
25FF099A1F9636D600053471 /* JCKA1Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FF09991F9636D600053471 /* JCKA1Controller.m */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
25032B881F9590970070F94C /* JCNA3Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCNA3Controller.h; sourceTree = "<group>"; };
25032B891F9590970070F94C /* JCNA3Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCNA3Controller.m; sourceTree = "<group>"; };
25032B8E1F95C96F0070F94C /* JCND1Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCND1Controller.h; sourceTree = "<group>"; };
25032B8F1F95C96F0070F94C /* JCND1Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCND1Controller.m; sourceTree = "<group>"; };
25032B911F95C9820070F94C /* JCND2Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCND2Controller.h; sourceTree = "<group>"; };
25032B921F95C9820070F94C /* JCND2Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCND2Controller.m; sourceTree = "<group>"; };
25122CEF1F94B3C40091B292 /* JCNC1Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCNC1Controller.h; sourceTree = "<group>"; };
25122CF01F94B3C40091B292 /* JCNC1Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCNC1Controller.m; sourceTree = "<group>"; };
25122CF21F94B4100091B292 /* JCNC2Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCNC2Controller.h; sourceTree = "<group>"; };
25122CF31F94B4100091B292 /* JCNC2Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCNC2Controller.m; sourceTree = "<group>"; };
2518178D1FD150F80092BBEA /* JCChainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCChainViewController.h; sourceTree = "<group>"; };
2518178E1FD150F80092BBEA /* JCChainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCChainViewController.m; sourceTree = "<group>"; };
251D79D11FA330B800636279 /* JCAttributed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCAttributed.h; sourceTree = "<group>"; };
251D79D21FA330B800636279 /* JCAttributed.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCAttributed.m; sourceTree = "<group>"; };
25236FE31F945E100064117E /* JCTableController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCTableController.h; sourceTree = "<group>"; };
25236FE41F945E100064117E /* JCTableController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCTableController.m; sourceTree = "<group>"; };
25236FE61F945E420064117E /* JCNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCNavigationController.h; sourceTree = "<group>"; };
25236FE71F945E420064117E /* JCNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCNavigationController.m; sourceTree = "<group>"; };
25236FE91F945F2E0064117E /* JCTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCTabBarController.h; sourceTree = "<group>"; };
25236FEA1F945F2E0064117E /* JCTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCTabBarController.m; sourceTree = "<group>"; };
25236FEC1F945F6F0064117E /* JCRootNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCRootNavigationController.h; sourceTree = "<group>"; };
25236FED1F945F6F0064117E /* JCRootNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCRootNavigationController.m; sourceTree = "<group>"; };
25236FEF1F94602B0064117E /* JCRootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCRootViewController.h; sourceTree = "<group>"; };
25236FF01F94602B0064117E /* JCRootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCRootViewController.m; sourceTree = "<group>"; };
25236FF31F94624F0064117E /* JCNavigationDemo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCNavigationDemo.h; sourceTree = "<group>"; };
25236FF41F94624F0064117E /* JCNavigationDemo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCNavigationDemo.m; sourceTree = "<group>"; };
252370031F946EAF0064117E /* JCNA1Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCNA1Controller.h; sourceTree = "<group>"; };
252370041F946EAF0064117E /* JCNA1Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCNA1Controller.m; sourceTree = "<group>"; };
252370061F9470EE0064117E /* JCNA2Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCNA2Controller.h; sourceTree = "<group>"; };
252370071F9470EE0064117E /* JCNA2Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCNA2Controller.m; sourceTree = "<group>"; };
2523700A1F94721A0064117E /* JCNB1Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCNB1Controller.h; sourceTree = "<group>"; };
2523700B1F94721A0064117E /* JCNB1Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCNB1Controller.m; sourceTree = "<group>"; };
258258411F99CD1100E007E7 /* JCSRootController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCSRootController.h; sourceTree = "<group>"; };
258258421F99CD1100E007E7 /* JCSRootController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCSRootController.m; sourceTree = "<group>"; };
258258481F99E4B600E007E7 /* JCThemeManage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCThemeManage.h; sourceTree = "<group>"; };
258258491F99E4B600E007E7 /* JCThemeManage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCThemeManage.m; sourceTree = "<group>"; };
2582584B1F99F8EE00E007E7 /* JCSkinSetupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCSkinSetupController.h; sourceTree = "<group>"; };
2582584C1F99F8EE00E007E7 /* JCSkinSetupController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCSkinSetupController.m; sourceTree = "<group>"; };
25B46B6F1F9856F00026AFAD /* JCCategoryKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCCategoryKit.h; sourceTree = "<group>"; };
25B46B721F9856F00026AFAD /* NSArray+JCBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+JCBlock.h"; sourceTree = "<group>"; };
25B46B731F9856F00026AFAD /* NSArray+JCBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+JCBlock.m"; sourceTree = "<group>"; };
25B46B751F9856F00026AFAD /* NSBundle+JCBundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+JCBundle.h"; sourceTree = "<group>"; };
25B46B761F9856F00026AFAD /* NSBundle+JCBundle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+JCBundle.m"; sourceTree = "<group>"; };
25B46B781F9856F00026AFAD /* NSData+JCData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+JCData.h"; sourceTree = "<group>"; };
25B46B791F9856F00026AFAD /* NSData+JCData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+JCData.m"; sourceTree = "<group>"; };
25B46B7B1F9856F00026AFAD /* NSDate+JCDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+JCDate.h"; sourceTree = "<group>"; };
25B46B7C1F9856F00026AFAD /* NSDate+JCDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+JCDate.m"; sourceTree = "<group>"; };
25B46B7E1F9856F00026AFAD /* NSDictionary+JCBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+JCBlock.h"; sourceTree = "<group>"; };
25B46B7F1F9856F00026AFAD /* NSDictionary+JCBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+JCBlock.m"; sourceTree = "<group>"; };
25B46B811F9856F00026AFAD /* NSException+JCException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSException+JCException.h"; sourceTree = "<group>"; };
25B46B821F9856F00026AFAD /* NSException+JCException.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSException+JCException.m"; sourceTree = "<group>"; };
25B46B841F9856F00026AFAD /* NSFileManager+JCFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSFileManager+JCFileManager.h"; sourceTree = "<group>"; };
25B46B851F9856F00026AFAD /* NSFileManager+JCFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSFileManager+JCFileManager.m"; sourceTree = "<group>"; };
25B46B871F9856F00026AFAD /* NSInvocation+JCInvocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSInvocation+JCInvocation.h"; sourceTree = "<group>"; };
25B46B881F9856F00026AFAD /* NSInvocation+JCInvocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSInvocation+JCInvocation.m"; sourceTree = "<group>"; };
25B46B8A1F9856F00026AFAD /* NSMutableAttributedString+JCAttributedString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+JCAttributedString.h"; sourceTree = "<group>"; };
25B46B8B1F9856F00026AFAD /* NSMutableAttributedString+JCAttributedString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+JCAttributedString.m"; sourceTree = "<group>"; };
25B46B8D1F9856F00026AFAD /* NSNotificationCenter+JCNotificationCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNotificationCenter+JCNotificationCenter.h"; sourceTree = "<group>"; };
25B46B8E1F9856F00026AFAD /* NSNotificationCenter+JCNotificationCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNotificationCenter+JCNotificationCenter.m"; sourceTree = "<group>"; };
25B46B901F9856F00026AFAD /* NSNumber+JCNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNumber+JCNumber.h"; sourceTree = "<group>"; };
25B46B911F9856F00026AFAD /* NSNumber+JCNumber.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNumber+JCNumber.m"; sourceTree = "<group>"; };
25B46B931F9856F00026AFAD /* NSObject+JCObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+JCObject.h"; sourceTree = "<group>"; };
25B46B941F9856F00026AFAD /* NSObject+JCObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+JCObject.m"; sourceTree = "<group>"; };
25B46B961F9856F00026AFAD /* NSParagraphStyle+JCText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSParagraphStyle+JCText.h"; sourceTree = "<group>"; };
25B46B971F9856F00026AFAD /* NSParagraphStyle+JCText.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSParagraphStyle+JCText.m"; sourceTree = "<group>"; };
25B46B991F9856F00026AFAD /* NSString+JCString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+JCString.h"; sourceTree = "<group>"; };
25B46B9A1F9856F00026AFAD /* NSString+JCString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+JCString.m"; sourceTree = "<group>"; };
25B46B9C1F9856F00026AFAD /* NSTimer+JCBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSTimer+JCBlock.h"; sourceTree = "<group>"; };
25B46B9D1F9856F00026AFAD /* NSTimer+JCBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSTimer+JCBlock.m"; sourceTree = "<group>"; };
25B46B9F1F9856F00026AFAD /* NSURL+JCURL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSURL+JCURL.h"; sourceTree = "<group>"; };
25B46BA01F9856F00026AFAD /* NSURL+JCURL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSURL+JCURL.m"; sourceTree = "<group>"; };
25B46BA31F9856F00026AFAD /* CADisplayLink+JCToRunLoop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CADisplayLink+JCToRunLoop.h"; sourceTree = "<group>"; };
25B46BA41F9856F00026AFAD /* CADisplayLink+JCToRunLoop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CADisplayLink+JCToRunLoop.m"; sourceTree = "<group>"; };
25B46BA51F9856F00026AFAD /* CALayer+JCLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+JCLayer.h"; sourceTree = "<group>"; };
25B46BA61F9856F00026AFAD /* CALayer+JCLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+JCLayer.m"; sourceTree = "<group>"; };
25B46BA71F9856F00026AFAD /* JCGraphicsUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCGraphicsUtilities.h; sourceTree = "<group>"; };
25B46BA81F9856F00026AFAD /* JCGraphicsUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCGraphicsUtilities.m; sourceTree = "<group>"; };
25B46BAA1F9856F00026AFAD /* UIApplication+JCApplication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIApplication+JCApplication.h"; sourceTree = "<group>"; };
25B46BAB1F9856F00026AFAD /* UIApplication+JCApplication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIApplication+JCApplication.m"; sourceTree = "<group>"; };
25B46BAD1F9856F00026AFAD /* UIBarButtonItem+JCBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+JCBlock.h"; sourceTree = "<group>"; };
25B46BAE1F9856F00026AFAD /* UIBarButtonItem+JCBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+JCBlock.m"; sourceTree = "<group>"; };
25B46BB01F9856F00026AFAD /* UIBarItem+JCBarItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarItem+JCBarItem.h"; sourceTree = "<group>"; };
25B46BB11F9856F00026AFAD /* UIBarItem+JCBarItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarItem+JCBarItem.m"; sourceTree = "<group>"; };
25B46BB31F9856F00026AFAD /* UIBezierPath+JCBezierPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBezierPath+JCBezierPath.h"; sourceTree = "<group>"; };
25B46BB41F9856F00026AFAD /* UIBezierPath+JCBezierPath.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBezierPath+JCBezierPath.m"; sourceTree = "<group>"; };
25B46BB61F9856F00026AFAD /* UIButton+JCButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+JCButton.h"; sourceTree = "<group>"; };
25B46BB71F9856F00026AFAD /* UIButton+JCButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+JCButton.m"; sourceTree = "<group>"; };
25B46BB91F9856F00026AFAD /* UIColor+JCColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JCColor.h"; sourceTree = "<group>"; };
25B46BBA1F9856F00026AFAD /* UIColor+JCColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JCColor.m"; sourceTree = "<group>"; };
25B46BBB1F9856F00026AFAD /* UIColor+JCSeries.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JCSeries.h"; sourceTree = "<group>"; };
25B46BBC1F9856F00026AFAD /* UIColor+JCSeries.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JCSeries.m"; sourceTree = "<group>"; };
25B46BBE1F9856F00026AFAD /* UIControl+JCControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+JCControl.h"; sourceTree = "<group>"; };
25B46BBF1F9856F00026AFAD /* UIControl+JCControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+JCControl.m"; sourceTree = "<group>"; };
25B46BC11F9856F00026AFAD /* UIDevice+JCDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+JCDevice.h"; sourceTree = "<group>"; };
25B46BC21F9856F00026AFAD /* UIDevice+JCDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+JCDevice.m"; sourceTree = "<group>"; };
25B46BC41F9856F00026AFAD /* JCFontName.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFontName.h; sourceTree = "<group>"; };
25B46BC51F9856F00026AFAD /* UIFont+JCScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+JCScale.h"; sourceTree = "<group>"; };
25B46BC61F9856F00026AFAD /* UIFont+JCScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+JCScale.m"; sourceTree = "<group>"; };
25B46BC81F9856F00026AFAD /* UIGestureRecognizer+JCBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIGestureRecognizer+JCBlock.h"; sourceTree = "<group>"; };
25B46BC91F9856F00026AFAD /* UIGestureRecognizer+JCBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIGestureRecognizer+JCBlock.m"; sourceTree = "<group>"; };
25B46BCB1F9856F00026AFAD /* UIImage+JCImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+JCImage.h"; sourceTree = "<group>"; };
25B46BCC1F9856F00026AFAD /* UIImage+JCImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+JCImage.m"; sourceTree = "<group>"; };
25B46BCE1F9856F00026AFAD /* UIImageView+JCImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+JCImageView.h"; sourceTree = "<group>"; };
25B46BCF1F9856F00026AFAD /* UIImageView+JCImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+JCImageView.m"; sourceTree = "<group>"; };
25B46BD11F9856F00026AFAD /* UILabel+JCLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+JCLabel.h"; sourceTree = "<group>"; };
25B46BD21F9856F00026AFAD /* UILabel+JCLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+JCLabel.m"; sourceTree = "<group>"; };
25B46BD41F9856F00026AFAD /* UINavigationController+JCNavigationAttributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+JCNavigationAttributes.h"; sourceTree = "<group>"; };
25B46BD51F9856F00026AFAD /* UINavigationController+JCNavigationAttributes.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+JCNavigationAttributes.m"; sourceTree = "<group>"; };
25B46BD71F9856F00026AFAD /* UINavigationItem+JCLoading.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationItem+JCLoading.h"; sourceTree = "<group>"; };
25B46BD81F9856F00026AFAD /* UINavigationItem+JCLoading.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationItem+JCLoading.m"; sourceTree = "<group>"; };
25B46BDA1F9856F00026AFAD /* UIResponder+JCResponder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIResponder+JCResponder.h"; sourceTree = "<group>"; };
25B46BDB1F9856F00026AFAD /* UIResponder+JCResponder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+JCResponder.m"; sourceTree = "<group>"; };
25B46BDD1F9856F00026AFAD /* UIScreen+JCScreen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+JCScreen.h"; sourceTree = "<group>"; };
25B46BDE1F9856F00026AFAD /* UIScreen+JCScreen.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+JCScreen.m"; sourceTree = "<group>"; };
25B46BE01F9856F00026AFAD /* UIScrollView+JCScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+JCScrollView.h"; sourceTree = "<group>"; };
25B46BE11F9856F00026AFAD /* UIScrollView+JCScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+JCScrollView.m"; sourceTree = "<group>"; };
25B46BE31F9856F00026AFAD /* UITabBarController+JCTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITabBarController+JCTabBarController.h"; sourceTree = "<group>"; };
25B46BE41F9856F00026AFAD /* UITabBarController+JCTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITabBarController+JCTabBarController.m"; sourceTree = "<group>"; };
25B46BE61F9856F00026AFAD /* UITableView+JCPlaceholder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+JCPlaceholder.h"; sourceTree = "<group>"; };
25B46BE71F9856F00026AFAD /* UITableView+JCPlaceholder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+JCPlaceholder.m"; sourceTree = "<group>"; };
25B46BE91F9856F00026AFAD /* UITableViewCell+JCSeparator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewCell+JCSeparator.h"; sourceTree = "<group>"; };
25B46BEA1F9856F00026AFAD /* UITableViewCell+JCSeparator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewCell+JCSeparator.m"; sourceTree = "<group>"; };
25B46BEC1F9856F00026AFAD /* UITextField+JCTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextField+JCTextField.h"; sourceTree = "<group>"; };
25B46BED1F9856F00026AFAD /* UITextField+JCTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextField+JCTextField.m"; sourceTree = "<group>"; };
25B46BEF1F9856F00026AFAD /* UITextView+JCTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+JCTextView.h"; sourceTree = "<group>"; };
25B46BF01F9856F00026AFAD /* UITextView+JCTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+JCTextView.m"; sourceTree = "<group>"; };
25B46BF21F9856F00026AFAD /* UIView+JCView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JCView.h"; sourceTree = "<group>"; };
25B46BF31F9856F00026AFAD /* UIView+JCView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JCView.m"; sourceTree = "<group>"; };
25B46BF51F9856F00026AFAD /* UIViewController+JCViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+JCViewController.h"; sourceTree = "<group>"; };
25B46BF61F9856F00026AFAD /* UIViewController+JCViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+JCViewController.m"; sourceTree = "<group>"; };
25B46BF81F9856F00026AFAD /* UIVisualEffectView+JCVisualEffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIVisualEffectView+JCVisualEffect.h"; sourceTree = "<group>"; };
25B46BF91F9856F00026AFAD /* UIVisualEffectView+JCVisualEffect.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIVisualEffectView+JCVisualEffect.m"; sourceTree = "<group>"; };
25B46BFB1F9856F00026AFAD /* UIWebView+JCHTML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWebView+JCHTML.h"; sourceTree = "<group>"; };
25B46BFC1F9856F00026AFAD /* UIWebView+JCHTML.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWebView+JCHTML.m"; sourceTree = "<group>"; };
25B46BFD1F9856F00026AFAD /* UIWebView+JCJavaScript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWebView+JCJavaScript.h"; sourceTree = "<group>"; };
25B46BFE1F9856F00026AFAD /* UIWebView+JCJavaScript.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWebView+JCJavaScript.m"; sourceTree = "<group>"; };
25B46BFF1F9856F00026AFAD /* UIWebView+JCProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWebView+JCProgress.h"; sourceTree = "<group>"; };
25B46C001F9856F00026AFAD /* UIWebView+JCProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWebView+JCProgress.m"; sourceTree = "<group>"; };
25B46C021F9856F00026AFAD /* JCKeyboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCKeyboardManager.h; sourceTree = "<group>"; };
25B46C031F9856F00026AFAD /* JCKeyboardManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCKeyboardManager.m; sourceTree = "<group>"; };
25B46C051F9856F00026AFAD /* JCFunc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFunc.h; sourceTree = "<group>"; };
25B46C061F9856F00026AFAD /* JCMacroKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCMacroKit.h; sourceTree = "<group>"; };
25B46C071F9856F00026AFAD /* JCMath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCMath.h; sourceTree = "<group>"; };
25B46C091F9856F00026AFAD /* UINavigationController+JCExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+JCExtension.h"; sourceTree = "<group>"; };
25B46C0A1F9856F00026AFAD /* UINavigationController+JCExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+JCExtension.m"; sourceTree = "<group>"; };
25B46C0C1F9856F00026AFAD /* UIView+JCLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JCLayout.h"; sourceTree = "<group>"; };
25B46C0D1F9856F00026AFAD /* UIView+JCLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JCLayout.m"; sourceTree = "<group>"; };
25C942721F8CB6E6006E3723 /* JCKitDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = JCKitDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
25C942761F8CB6E6006E3723 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
25C942781F8CB6E6006E3723 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ../../AppDelegate.h; sourceTree = "<group>"; };
25C942791F8CB6E6006E3723 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ../../AppDelegate.m; sourceTree = "<group>"; };
25C9427F1F8CB6E6006E3723 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
25C942811F8CB6E6006E3723 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = ../Assets.xcassets; sourceTree = "<group>"; };
25C942841F8CB6E6006E3723 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
25C942861F8CB6E6006E3723 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
25C942951F8CB81B006E3723 /* JCViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCViewController.h; sourceTree = "<group>"; };
25C942961F8CB81B006E3723 /* JCViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCViewController.m; sourceTree = "<group>"; };
25C943701F8CB945006E3723 /* JCKitDemoPCH.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JCKitDemoPCH.pch; sourceTree = "<group>"; };
25F1D7EA1FA7605600C18E7F /* UIView+JCTheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JCTheme.h"; sourceTree = "<group>"; };
25F1D7EB1FA7605600C18E7F /* UIView+JCTheme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JCTheme.m"; sourceTree = "<group>"; };
25F6136B1FE9454000E58B2D /* JCChain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCChain.h; sourceTree = "<group>"; };
25F6136C1FE9454000E58B2D /* JCChain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCChain.m; sourceTree = "<group>"; };
25FC15AA1FEAB0440055ACC5 /* JCArchivedModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCArchivedModel.h; sourceTree = "<group>"; };
25FC15AB1FEAB0440055ACC5 /* JCArchivedModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCArchivedModel.m; sourceTree = "<group>"; };
25FC15AE1FEAB05E0055ACC5 /* JCClassInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCClassInfo.h; sourceTree = "<group>"; };
25FC15AF1FEAB05E0055ACC5 /* JCClassInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCClassInfo.m; sourceTree = "<group>"; };
25FC15B01FEAB05E0055ACC5 /* NSObject+JCJSON.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+JCJSON.h"; sourceTree = "<group>"; };
25FC15B11FEAB05E0055ACC5 /* NSObject+JCJSON.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+JCJSON.m"; sourceTree = "<group>"; };
25FC15BC1FEAB08D0055ACC5 /* JCWeakProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCWeakProxy.h; sourceTree = "<group>"; };
25FC15BD1FEAB08D0055ACC5 /* JCWeakProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCWeakProxy.m; sourceTree = "<group>"; };
25FC15C11FEAB1280055ACC5 /* JCQRCodeScanView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCQRCodeScanView.h; sourceTree = "<group>"; };
25FC15C21FEAB1280055ACC5 /* JCQRCodeScanView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCQRCodeScanView.m; sourceTree = "<group>"; };
25FC15C51FEAB15E0055ACC5 /* JCToast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCToast.h; sourceTree = "<group>"; };
25FC15C61FEAB15E0055ACC5 /* JCAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCAlertController.h; sourceTree = "<group>"; };
25FC15C71FEAB15E0055ACC5 /* JCToast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCToast.m; sourceTree = "<group>"; };
25FC15C81FEAB15E0055ACC5 /* JCAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCAlertController.m; sourceTree = "<group>"; };
25FC15CC1FEAB1B90055ACC5 /* JCImageBrowseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCImageBrowseView.h; sourceTree = "<group>"; };
25FC15CD1FEAB1B90055ACC5 /* JCImageBrowseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCImageBrowseView.m; sourceTree = "<group>"; };
25FC15CE1FEAB1B90055ACC5 /* UTImageBrowseController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UTImageBrowseController.h; sourceTree = "<group>"; };
25FC15CF1FEAB1B90055ACC5 /* UTImageBrowseController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UTImageBrowseController.m; sourceTree = "<group>"; };
25FC15D21FEAB2400055ACC5 /* UTAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UTAlert.h; sourceTree = "<group>"; };
25FC15D31FEAB2400055ACC5 /* UTAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UTAlert.m; sourceTree = "<group>"; };
25FC15D51FEAB2630055ACC5 /* UTTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UTTextView.h; sourceTree = "<group>"; };
25FC15D61FEAB2630055ACC5 /* UTTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UTTextView.m; sourceTree = "<group>"; };
25FF09981F9636D600053471 /* JCKA1Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCKA1Controller.h; sourceTree = "<group>"; };
25FF09991F9636D600053471 /* JCKA1Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JCKA1Controller.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
25C9426F1F8CB6E6006E3723 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
25032B8D1F95C95D0070F94C /* FullScreen */ = {
isa = PBXGroup;
children = (
25032B8E1F95C96F0070F94C /* JCND1Controller.h */,
25032B8F1F95C96F0070F94C /* JCND1Controller.m */,
25032B911F95C9820070F94C /* JCND2Controller.h */,
25032B921F95C9820070F94C /* JCND2Controller.m */,
);
path = FullScreen;
sourceTree = "<group>";
};
25122CEE1F94B3B40091B292 /* transparent */ = {
isa = PBXGroup;
children = (
25122CEF1F94B3C40091B292 /* JCNC1Controller.h */,
25122CF01F94B3C40091B292 /* JCNC1Controller.m */,
25122CF21F94B4100091B292 /* JCNC2Controller.h */,
25122CF31F94B4100091B292 /* JCNC2Controller.m */,
);
path = transparent;
sourceTree = "<group>";
};
251817881FD14ED30092BBEA /* Chain */ = {
isa = PBXGroup;
children = (
25F6136B1FE9454000E58B2D /* JCChain.h */,
25F6136C1FE9454000E58B2D /* JCChain.m */,
);
path = Chain;
sourceTree = "<group>";
};
2518178C1FD150E50092BBEA /* UIChain */ = {
isa = PBXGroup;
children = (
2518178D1FD150F80092BBEA /* JCChainViewController.h */,
2518178E1FD150F80092BBEA /* JCChainViewController.m */,
);
path = UIChain;
sourceTree = "<group>";
};
251D79D01FA330B800636279 /* JCAttributed */ = {
isa = PBXGroup;
children = (
251D79D11FA330B800636279 /* JCAttributed.h */,
251D79D21FA330B800636279 /* JCAttributed.m */,
);
path = JCAttributed;
sourceTree = "<group>";
};
25236FE21F945D6A0064117E /* Main */ = {
isa = PBXGroup;
children = (
25C942781F8CB6E6006E3723 /* AppDelegate.h */,
25C942791F8CB6E6006E3723 /* AppDelegate.m */,
25236FEC1F945F6F0064117E /* JCRootNavigationController.h */,
25236FED1F945F6F0064117E /* JCRootNavigationController.m */,
25236FEF1F94602B0064117E /* JCRootViewController.h */,
25236FF01F94602B0064117E /* JCRootViewController.m */,
);
path = Main;
sourceTree = "<group>";
};
25236FF21F9461E60064117E /* NavigationController */ = {
isa = PBXGroup;
children = (
25236FF31F94624F0064117E /* JCNavigationDemo.h */,
25236FF41F94624F0064117E /* JCNavigationDemo.m */,
25032B8D1F95C95D0070F94C /* FullScreen */,
25122CEE1F94B3B40091B292 /* transparent */,
252370091F9471F40064117E /* BackBarButtonItem */,
252370021F946EA10064117E /* NavigationBarHidden */,
);
path = NavigationController;
sourceTree = "<group>";
};
252370021F946EA10064117E /* NavigationBarHidden */ = {
isa = PBXGroup;
children = (
252370031F946EAF0064117E /* JCNA1Controller.h */,
252370041F946EAF0064117E /* JCNA1Controller.m */,
252370061F9470EE0064117E /* JCNA2Controller.h */,
252370071F9470EE0064117E /* JCNA2Controller.m */,
25032B881F9590970070F94C /* JCNA3Controller.h */,
25032B891F9590970070F94C /* JCNA3Controller.m */,
);
path = NavigationBarHidden;
sourceTree = "<group>";
};
252370091F9471F40064117E /* BackBarButtonItem */ = {
isa = PBXGroup;
children = (
2523700A1F94721A0064117E /* JCNB1Controller.h */,
2523700B1F94721A0064117E /* JCNB1Controller.m */,
);
path = BackBarButtonItem;
sourceTree = "<group>";
};
258258401F99CC6E00E007E7 /* UISkinDemo */ = {
isa = PBXGroup;
children = (
258258411F99CD1100E007E7 /* JCSRootController.h */,
258258421F99CD1100E007E7 /* JCSRootController.m */,
2582584B1F99F8EE00E007E7 /* JCSkinSetupController.h */,
2582584C1F99F8EE00E007E7 /* JCSkinSetupController.m */,
);
path = UISkinDemo;
sourceTree = "<group>";
};
258258441F99E16C00E007E7 /* UISkin */ = {
isa = PBXGroup;
children = (
258258481F99E4B600E007E7 /* JCThemeManage.h */,
258258491F99E4B600E007E7 /* JCThemeManage.m */,
25F1D7E61FA75F4500C18E7F /* Category */,
);
path = UISkin;
sourceTree = "<group>";
};
25B46B6D1F9856F00026AFAD /* JCKit */ = {
isa = PBXGroup;
children = (
25FC15BF1FEAB0F20055ACC5 /* View */,
25FC15BB1FEAB08D0055ACC5 /* Utility */,
25FC15AD1FEAB05E0055ACC5 /* Model */,
25FC15A91FEAB0440055ACC5 /* Archiver */,
251817881FD14ED30092BBEA /* Chain */,
25B46C041F9856F00026AFAD /* JCMacroKit */,
25B46B6E1F9856F00026AFAD /* JCCategoryKit */,
25B46C0B1F9856F00026AFAD /* View Layout */,
25B46C011F9856F00026AFAD /* JCKeyboardManager */,
25B46C081F9856F00026AFAD /* NavigationExtension */,
258258441F99E16C00E007E7 /* UISkin */,
251D79D01FA330B800636279 /* JCAttributed */,
);
name = JCKit;
path = ../JCKit;
sourceTree = "<group>";
};
25B46B6E1F9856F00026AFAD /* JCCategoryKit */ = {
isa = PBXGroup;
children = (
25B46B6F1F9856F00026AFAD /* JCCategoryKit.h */,
25B46B701F9856F00026AFAD /* NS */,
25B46BA11F9856F00026AFAD /* UI */,
);
path = JCCategoryKit;
sourceTree = "<group>";
};
25B46B701F9856F00026AFAD /* NS */ = {
isa = PBXGroup;
children = (
25B46B711F9856F00026AFAD /* NSArray */,
25B46B741F9856F00026AFAD /* NSBundle */,
25B46B771F9856F00026AFAD /* NSData */,
25B46B7A1F9856F00026AFAD /* NSDate */,
25B46B7D1F9856F00026AFAD /* NSDictionary */,
25B46B801F9856F00026AFAD /* NSException */,
25B46B831F9856F00026AFAD /* NSFileManager */,
25B46B861F9856F00026AFAD /* NSInvocation */,
25B46B891F9856F00026AFAD /* NSMutableAttributedString */,
25B46B8C1F9856F00026AFAD /* NSNotificationCenter */,
25B46B8F1F9856F00026AFAD /* NSNumber */,
25B46B921F9856F00026AFAD /* NSObject */,
25B46B951F9856F00026AFAD /* NSParagraphStyle */,
25B46B981F9856F00026AFAD /* NSString */,
25B46B9B1F9856F00026AFAD /* NSTimer */,
25B46B9E1F9856F00026AFAD /* NSURL */,
);
path = NS;
sourceTree = "<group>";
};
25B46B711F9856F00026AFAD /* NSArray */ = {
isa = PBXGroup;
children = (
25B46B721F9856F00026AFAD /* NSArray+JCBlock.h */,
25B46B731F9856F00026AFAD /* NSArray+JCBlock.m */,
);
path = NSArray;
sourceTree = "<group>";
};
25B46B741F9856F00026AFAD /* NSBundle */ = {
isa = PBXGroup;
children = (
25B46B751F9856F00026AFAD /* NSBundle+JCBundle.h */,
25B46B761F9856F00026AFAD /* NSBundle+JCBundle.m */,
);
path = NSBundle;
sourceTree = "<group>";
};
25B46B771F9856F00026AFAD /* NSData */ = {
isa = PBXGroup;
children = (
25B46B781F9856F00026AFAD /* NSData+JCData.h */,
25B46B791F9856F00026AFAD /* NSData+JCData.m */,
);
path = NSData;
sourceTree = "<group>";
};
25B46B7A1F9856F00026AFAD /* NSDate */ = {
isa = PBXGroup;
children = (
25B46B7B1F9856F00026AFAD /* NSDate+JCDate.h */,
25B46B7C1F9856F00026AFAD /* NSDate+JCDate.m */,
);
path = NSDate;
sourceTree = "<group>";
};
25B46B7D1F9856F00026AFAD /* NSDictionary */ = {
isa = PBXGroup;
children = (
25B46B7E1F9856F00026AFAD /* NSDictionary+JCBlock.h */,
25B46B7F1F9856F00026AFAD /* NSDictionary+JCBlock.m */,
);
path = NSDictionary;
sourceTree = "<group>";
};
25B46B801F9856F00026AFAD /* NSException */ = {
isa = PBXGroup;
children = (
25B46B811F9856F00026AFAD /* NSException+JCException.h */,
25B46B821F9856F00026AFAD /* NSException+JCException.m */,
);
path = NSException;
sourceTree = "<group>";
};
25B46B831F9856F00026AFAD /* NSFileManager */ = {
isa = PBXGroup;
children = (
25B46B841F9856F00026AFAD /* NSFileManager+JCFileManager.h */,
25B46B851F9856F00026AFAD /* NSFileManager+JCFileManager.m */,
);
path = NSFileManager;
sourceTree = "<group>";
};
25B46B861F9856F00026AFAD /* NSInvocation */ = {
isa = PBXGroup;
children = (
25B46B871F9856F00026AFAD /* NSInvocation+JCInvocation.h */,
25B46B881F9856F00026AFAD /* NSInvocation+JCInvocation.m */,
);
path = NSInvocation;
sourceTree = "<group>";
};
25B46B891F9856F00026AFAD /* NSMutableAttributedString */ = {
isa = PBXGroup;
children = (
25B46B8A1F9856F00026AFAD /* NSMutableAttributedString+JCAttributedString.h */,
25B46B8B1F9856F00026AFAD /* NSMutableAttributedString+JCAttributedString.m */,
);
path = NSMutableAttributedString;
sourceTree = "<group>";
};
25B46B8C1F9856F00026AFAD /* NSNotificationCenter */ = {
isa = PBXGroup;
children = (
25B46B8D1F9856F00026AFAD /* NSNotificationCenter+JCNotificationCenter.h */,
25B46B8E1F9856F00026AFAD /* NSNotificationCenter+JCNotificationCenter.m */,
);
path = NSNotificationCenter;
sourceTree = "<group>";
};
25B46B8F1F9856F00026AFAD /* NSNumber */ = {
isa = PBXGroup;
children = (
25B46B901F9856F00026AFAD /* NSNumber+JCNumber.h */,
25B46B911F9856F00026AFAD /* NSNumber+JCNumber.m */,
);
path = NSNumber;
sourceTree = "<group>";
};
25B46B921F9856F00026AFAD /* NSObject */ = {
isa = PBXGroup;
children = (
25B46B931F9856F00026AFAD /* NSObject+JCObject.h */,
25B46B941F9856F00026AFAD /* NSObject+JCObject.m */,
);
path = NSObject;
sourceTree = "<group>";
};
25B46B951F9856F00026AFAD /* NSParagraphStyle */ = {
isa = PBXGroup;
children = (
25B46B961F9856F00026AFAD /* NSParagraphStyle+JCText.h */,
25B46B971F9856F00026AFAD /* NSParagraphStyle+JCText.m */,
);
path = NSParagraphStyle;
sourceTree = "<group>";
};
25B46B981F9856F00026AFAD /* NSString */ = {
isa = PBXGroup;
children = (
25B46B991F9856F00026AFAD /* NSString+JCString.h */,
25B46B9A1F9856F00026AFAD /* NSString+JCString.m */,
);
path = NSString;
sourceTree = "<group>";
};
25B46B9B1F9856F00026AFAD /* NSTimer */ = {
isa = PBXGroup;
children = (
25B46B9C1F9856F00026AFAD /* NSTimer+JCBlock.h */,
25B46B9D1F9856F00026AFAD /* NSTimer+JCBlock.m */,
);
path = NSTimer;
sourceTree = "<group>";
};
25B46B9E1F9856F00026AFAD /* NSURL */ = {
isa = PBXGroup;
children = (
25B46B9F1F9856F00026AFAD /* NSURL+JCURL.h */,
25B46BA01F9856F00026AFAD /* NSURL+JCURL.m */,
);
path = NSURL;
sourceTree = "<group>";
};
25B46BA11F9856F00026AFAD /* UI */ = {
isa = PBXGroup;
children = (
25B46BA21F9856F00026AFAD /* Quartz */,
25B46BA91F9856F00026AFAD /* UIApplication */,
25B46BAC1F9856F00026AFAD /* UIBarButtonItem */,
25B46BAF1F9856F00026AFAD /* UIBarItem */,
25B46BB21F9856F00026AFAD /* UIBezierPath */,
25B46BB51F9856F00026AFAD /* UIButton */,
25B46BB81F9856F00026AFAD /* UIColor */,
25B46BBD1F9856F00026AFAD /* UIControl */,
25B46BC01F9856F00026AFAD /* UIDevice */,
25B46BC31F9856F00026AFAD /* UIFont */,
25B46BC71F9856F00026AFAD /* UIGestureRecognizer */,
25B46BCA1F9856F00026AFAD /* UIImage */,
25B46BCD1F9856F00026AFAD /* UIImageView */,
25B46BD01F9856F00026AFAD /* UILabel */,
25B46BD31F9856F00026AFAD /* UINavigationController */,
25B46BD61F9856F00026AFAD /* UINavigationItem */,
25B46BD91F9856F00026AFAD /* UIResponder */,
25B46BDC1F9856F00026AFAD /* UIScreen */,
25B46BDF1F9856F00026AFAD /* UIScrollView */,
25B46BE21F9856F00026AFAD /* UITabBarController */,
25B46BE51F9856F00026AFAD /* UITableView */,
25B46BE81F9856F00026AFAD /* UITableViewCell */,
25B46BEB1F9856F00026AFAD /* UITextField */,
25B46BEE1F9856F00026AFAD /* UITextView */,
25B46BF11F9856F00026AFAD /* UIView */,
25B46BF41F9856F00026AFAD /* UIViewController */,
25B46BF71F9856F00026AFAD /* UIVisualEffectView */,
25B46BFA1F9856F00026AFAD /* UIWebView */,
);
path = UI;
sourceTree = "<group>";
};
25B46BA21F9856F00026AFAD /* Quartz */ = {
isa = PBXGroup;
children = (
25B46BA31F9856F00026AFAD /* CADisplayLink+JCToRunLoop.h */,
25B46BA41F9856F00026AFAD /* CADisplayLink+JCToRunLoop.m */,
25B46BA51F9856F00026AFAD /* CALayer+JCLayer.h */,
25B46BA61F9856F00026AFAD /* CALayer+JCLayer.m */,
25B46BA71F9856F00026AFAD /* JCGraphicsUtilities.h */,
25B46BA81F9856F00026AFAD /* JCGraphicsUtilities.m */,
);
path = Quartz;
sourceTree = "<group>";
};
25B46BA91F9856F00026AFAD /* UIApplication */ = {
isa = PBXGroup;
children = (
25B46BAA1F9856F00026AFAD /* UIApplication+JCApplication.h */,
25B46BAB1F9856F00026AFAD /* UIApplication+JCApplication.m */,
);
path = UIApplication;
sourceTree = "<group>";
};
25B46BAC1F9856F00026AFAD /* UIBarButtonItem */ = {
isa = PBXGroup;
children = (
25B46BAD1F9856F00026AFAD /* UIBarButtonItem+JCBlock.h */,
25B46BAE1F9856F00026AFAD /* UIBarButtonItem+JCBlock.m */,
);
path = UIBarButtonItem;
sourceTree = "<group>";
};
25B46BAF1F9856F00026AFAD /* UIBarItem */ = {
isa = PBXGroup;
children = (
25B46BB01F9856F00026AFAD /* UIBarItem+JCBarItem.h */,
25B46BB11F9856F00026AFAD /* UIBarItem+JCBarItem.m */,
);
path = UIBarItem;
sourceTree = "<group>";
};
25B46BB21F9856F00026AFAD /* UIBezierPath */ = {
isa = PBXGroup;
children = (
25B46BB31F9856F00026AFAD /* UIBezierPath+JCBezierPath.h */,
25B46BB41F9856F00026AFAD /* UIBezierPath+JCBezierPath.m */,
);
path = UIBezierPath;
sourceTree = "<group>";
};
25B46BB51F9856F00026AFAD /* UIButton */ = {
isa = PBXGroup;
children = (
25B46BB61F9856F00026AFAD /* UIButton+JCButton.h */,
25B46BB71F9856F00026AFAD /* UIButton+JCButton.m */,
);
path = UIButton;
sourceTree = "<group>";
};
25B46BB81F9856F00026AFAD /* UIColor */ = {
isa = PBXGroup;
children = (
25B46BB91F9856F00026AFAD /* UIColor+JCColor.h */,
25B46BBA1F9856F00026AFAD /* UIColor+JCColor.m */,
25B46BBB1F9856F00026AFAD /* UIColor+JCSeries.h */,
25B46BBC1F9856F00026AFAD /* UIColor+JCSeries.m */,
);
path = UIColor;
sourceTree = "<group>";
};
25B46BBD1F9856F00026AFAD /* UIControl */ = {
isa = PBXGroup;
children = (
25B46BBE1F9856F00026AFAD /* UIControl+JCControl.h */,
25B46BBF1F9856F00026AFAD /* UIControl+JCControl.m */,
);
path = UIControl;
sourceTree = "<group>";
};
25B46BC01F9856F00026AFAD /* UIDevice */ = {
isa = PBXGroup;
children = (
25B46BC11F9856F00026AFAD /* UIDevice+JCDevice.h */,
25B46BC21F9856F00026AFAD /* UIDevice+JCDevice.m */,
);
path = UIDevice;
sourceTree = "<group>";
};
25B46BC31F9856F00026AFAD /* UIFont */ = {
isa = PBXGroup;
children = (
25B46BC41F9856F00026AFAD /* JCFontName.h */,
25B46BC51F9856F00026AFAD /* UIFont+JCScale.h */,
25B46BC61F9856F00026AFAD /* UIFont+JCScale.m */,
);
path = UIFont;
sourceTree = "<group>";
};
25B46BC71F9856F00026AFAD /* UIGestureRecognizer */ = {
isa = PBXGroup;
children = (
25B46BC81F9856F00026AFAD /* UIGestureRecognizer+JCBlock.h */,
25B46BC91F9856F00026AFAD /* UIGestureRecognizer+JCBlock.m */,
);
path = UIGestureRecognizer;
sourceTree = "<group>";
};
25B46BCA1F9856F00026AFAD /* UIImage */ = {
isa = PBXGroup;
children = (
25B46BCB1F9856F00026AFAD /* UIImage+JCImage.h */,
25B46BCC1F9856F00026AFAD /* UIImage+JCImage.m */,
);
path = UIImage;
sourceTree = "<group>";
};
25B46BCD1F9856F00026AFAD /* UIImageView */ = {
isa = PBXGroup;
children = (
25B46BCE1F9856F00026AFAD /* UIImageView+JCImageView.h */,
25B46BCF1F9856F00026AFAD /* UIImageView+JCImageView.m */,
);
path = UIImageView;
sourceTree = "<group>";
};
25B46BD01F9856F00026AFAD /* UILabel */ = {
isa = PBXGroup;
children = (
25B46BD11F9856F00026AFAD /* UILabel+JCLabel.h */,
25B46BD21F9856F00026AFAD /* UILabel+JCLabel.m */,
);
path = UILabel;
sourceTree = "<group>";
};
25B46BD31F9856F00026AFAD /* UINavigationController */ = {
isa = PBXGroup;
children = (
25B46BD41F9856F00026AFAD /* UINavigationController+JCNavigationAttributes.h */,
25B46BD51F9856F00026AFAD /* UINavigationController+JCNavigationAttributes.m */,
);
path = UINavigationController;
sourceTree = "<group>";
};
25B46BD61F9856F00026AFAD /* UINavigationItem */ = {
isa = PBXGroup;
children = (
25B46BD71F9856F00026AFAD /* UINavigationItem+JCLoading.h */,
25B46BD81F9856F00026AFAD /* UINavigationItem+JCLoading.m */,
);
path = UINavigationItem;
sourceTree = "<group>";
};
25B46BD91F9856F00026AFAD /* UIResponder */ = {
isa = PBXGroup;
children = (
25B46BDA1F9856F00026AFAD /* UIResponder+JCResponder.h */,
25B46BDB1F9856F00026AFAD /* UIResponder+JCResponder.m */,
);
path = UIResponder;
sourceTree = "<group>";
};
25B46BDC1F9856F00026AFAD /* UIScreen */ = {
isa = PBXGroup;
children = (
25B46BDD1F9856F00026AFAD /* UIScreen+JCScreen.h */,
25B46BDE1F9856F00026AFAD /* UIScreen+JCScreen.m */,
);
path = UIScreen;
sourceTree = "<group>";
};
25B46BDF1F9856F00026AFAD /* UIScrollView */ = {
isa = PBXGroup;
children = (
25B46BE01F9856F00026AFAD /* UIScrollView+JCScrollView.h */,
25B46BE11F9856F00026AFAD /* UIScrollView+JCScrollView.m */,
);
path = UIScrollView;
sourceTree = "<group>";
};
25B46BE21F9856F00026AFAD /* UITabBarController */ = {
isa = PBXGroup;
children = (
25B46BE31F9856F00026AFAD /* UITabBarController+JCTabBarController.h */,
25B46BE41F9856F00026AFAD /* UITabBarController+JCTabBarController.m */,
);
path = UITabBarController;
sourceTree = "<group>";
};
25B46BE51F9856F00026AFAD /* UITableView */ = {
isa = PBXGroup;
children = (
25B46BE61F9856F00026AFAD /* UITableView+JCPlaceholder.h */,
25B46BE71F9856F00026AFAD /* UITableView+JCPlaceholder.m */,
);
path = UITableView;
sourceTree = "<group>";
};
25B46BE81F9856F00026AFAD /* UITableViewCell */ = {
isa = PBXGroup;
children = (
25B46BE91F9856F00026AFAD /* UITableViewCell+JCSeparator.h */,
25B46BEA1F9856F00026AFAD /* UITableViewCell+JCSeparator.m */,
);
path = UITableViewCell;
sourceTree = "<group>";
};
25B46BEB1F9856F00026AFAD /* UITextField */ = {
isa = PBXGroup;
children = (
25B46BEC1F9856F00026AFAD /* UITextField+JCTextField.h */,
25B46BED1F9856F00026AFAD /* UITextField+JCTextField.m */,
);
path = UITextField;
sourceTree = "<group>";
};
25B46BEE1F9856F00026AFAD /* UITextView */ = {
isa = PBXGroup;
children = (
25B46BEF1F9856F00026AFAD /* UITextView+JCTextView.h */,
25B46BF01F9856F00026AFAD /* UITextView+JCTextView.m */,
);
path = UITextView;
sourceTree = "<group>";
};
25B46BF11F9856F00026AFAD /* UIView */ = {
isa = PBXGroup;
children = (
25B46BF21F9856F00026AFAD /* UIView+JCView.h */,
25B46BF31F9856F00026AFAD /* UIView+JCView.m */,
);
path = UIView;
sourceTree = "<group>";
};
25B46BF41F9856F00026AFAD /* UIViewController */ = {
isa = PBXGroup;
children = (
25B46BF51F9856F00026AFAD /* UIViewController+JCViewController.h */,
25B46BF61F9856F00026AFAD /* UIViewController+JCViewController.m */,
);
path = UIViewController;
sourceTree = "<group>";
};
25B46BF71F9856F00026AFAD /* UIVisualEffectView */ = {
isa = PBXGroup;
children = (
25B46BF81F9856F00026AFAD /* UIVisualEffectView+JCVisualEffect.h */,
25B46BF91F9856F00026AFAD /* UIVisualEffectView+JCVisualEffect.m */,
);
path = UIVisualEffectView;
sourceTree = "<group>";
};
25B46BFA1F9856F00026AFAD /* UIWebView */ = {
isa = PBXGroup;
children = (
25B46BFB1F9856F00026AFAD /* UIWebView+JCHTML.h */,
25B46BFC1F9856F00026AFAD /* UIWebView+JCHTML.m */,
25B46BFD1F9856F00026AFAD /* UIWebView+JCJavaScript.h */,
25B46BFE1F9856F00026AFAD /* UIWebView+JCJavaScript.m */,
25B46BFF1F9856F00026AFAD /* UIWebView+JCProgress.h */,
25B46C001F9856F00026AFAD /* UIWebView+JCProgress.m */,
);
path = UIWebView;
sourceTree = "<group>";
};
25B46C011F9856F00026AFAD /* JCKeyboardManager */ = {
isa = PBXGroup;
children = (
25B46C021F9856F00026AFAD /* JCKeyboardManager.h */,
25B46C031F9856F00026AFAD /* JCKeyboardManager.m */,
);
path = JCKeyboardManager;
sourceTree = "<group>";
};
25B46C041F9856F00026AFAD /* JCMacroKit */ = {
isa = PBXGroup;
children = (
25B46C051F9856F00026AFAD /* JCFunc.h */,
25B46C061F9856F00026AFAD /* JCMacroKit.h */,
25B46C071F9856F00026AFAD /* JCMath.h */,
);
path = JCMacroKit;
sourceTree = "<group>";
};
25B46C081F9856F00026AFAD /* NavigationExtension */ = {
isa = PBXGroup;
children = (
25B46C091F9856F00026AFAD /* UINavigationController+JCExtension.h */,
25B46C0A1F9856F00026AFAD /* UINavigationController+JCExtension.m */,
);
path = NavigationExtension;
sourceTree = "<group>";
};
25B46C0B1F9856F00026AFAD /* View Layout */ = {
isa = PBXGroup;
children = (
25B46C0C1F9856F00026AFAD /* UIView+JCLayout.h */,
25B46C0D1F9856F00026AFAD /* UIView+JCLayout.m */,
);
path = "View Layout";
sourceTree = "<group>";
};
25C942691F8CB6E6006E3723 = {
isa = PBXGroup;
children = (
25B46B6D1F9856F00026AFAD /* JCKit */,
25C942741F8CB6E6006E3723 /* JCKitDemo */,
25C942731F8CB6E6006E3723 /* Products */,
);
sourceTree = "<group>";
};
25C942731F8CB6E6006E3723 /* Products */ = {
isa = PBXGroup;
children = (
25C942721F8CB6E6006E3723 /* JCKitDemo.app */,
);
name = Products;
sourceTree = "<group>";
};
25C942741F8CB6E6006E3723 /* JCKitDemo */ = {
isa = PBXGroup;
children = (
25C942901F8CB7DE006E3723 /* Class */,
25C9436F1F8CB929006E3723 /* Support */,
25C9428F1F8CB7C7006E3723 /* Resoure */,
25C9428E1F8CB7A6006E3723 /* Storyboard */,
25C942751F8CB6E6006E3723 /* Supporting Files */,
);
path = JCKitDemo;
sourceTree = "<group>";
};
25C942751F8CB6E6006E3723 /* Supporting Files */ = {
isa = PBXGroup;
children = (
25C942861F8CB6E6006E3723 /* Info.plist */,
25C942761F8CB6E6006E3723 /* main.m */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
25C9428E1F8CB7A6006E3723 /* Storyboard */ = {
isa = PBXGroup;
children = (
25C9427E1F8CB6E6006E3723 /* Main.storyboard */,
25C942831F8CB6E6006E3723 /* LaunchScreen.storyboard */,
);
path = Storyboard;
sourceTree = "<group>";
};
25C9428F1F8CB7C7006E3723 /* Resoure */ = {