-
Notifications
You must be signed in to change notification settings - Fork 453
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1446 lines (1432 loc) · 106 KB
/
project.pbxproj
File metadata and controls
1446 lines (1432 loc) · 106 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 */
0E3F5DFD193C5FB9003F6A77 /* NUINavigationBarRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3F5DFC193C5FB9003F6A77 /* NUINavigationBarRendererTests.m */; };
0E3F5E00193C64AD003F6A77 /* shadow_image.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E3F5DFE193C64AD003F6A77 /* shadow_image.png */; };
0E3F5E01193C64AD003F6A77 /* shadow_image.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E3F5DFE193C64AD003F6A77 /* shadow_image.png */; };
0E3F5E02193C64AD003F6A77 /* shadow_image@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E3F5DFF193C64AD003F6A77 /* shadow_image@2x.png */; };
0E3F5E03193C64AD003F6A77 /* shadow_image@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E3F5DFF193C64AD003F6A77 /* shadow_image@2x.png */; };
0E3F5E05193C6D90003F6A77 /* NUINavigationBarRendererGradientTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3F5E04193C6D90003F6A77 /* NUINavigationBarRendererGradientTest.m */; };
0E3F5E08193C76C3003F6A77 /* NUIProgressViewRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3F5E07193C76C3003F6A77 /* NUIProgressViewRendererTests.m */; };
0E3F5E0B193C7C1F003F6A77 /* NUISearchBarRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3F5E0A193C7C1F003F6A77 /* NUISearchBarRendererTests.m */; };
0E3F5E0D193C7EA1003F6A77 /* NUISearchBarRendererGradientTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3F5E0C193C7EA1003F6A77 /* NUISearchBarRendererGradientTest.m */; };
0E5516101938727100B293B7 /* background_image@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E55160F1938727100B293B7 /* background_image@2x.png */; };
0E5516121938738C00B293B7 /* background_image.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E5516111938738C00B293B7 /* background_image.png */; };
0E5516131938751100B293B7 /* background_image.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E5516111938738C00B293B7 /* background_image.png */; };
0E5516141938751400B293B7 /* background_image@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E55160F1938727100B293B7 /* background_image@2x.png */; };
0E55161C1938891000B293B7 /* NUIButtonRendererBackgroundImageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E55161A1938891000B293B7 /* NUIButtonRendererBackgroundImageTests.m */; };
0E55161D1938891000B293B7 /* NUIButtonRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E55161B1938891000B293B7 /* NUIButtonRendererTests.m */; };
0E55162019388C1E00B293B7 /* foreground_image.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E55161E19388C1E00B293B7 /* foreground_image.png */; };
0E55162119388C1E00B293B7 /* foreground_image.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E55161E19388C1E00B293B7 /* foreground_image.png */; };
0E55162219388C1E00B293B7 /* foreground_image@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E55161F19388C1E00B293B7 /* foreground_image@2x.png */; };
0E55162319388C1E00B293B7 /* foreground_image@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E55161F19388C1E00B293B7 /* foreground_image@2x.png */; };
0E55162519388CC500B293B7 /* NUIButtonRendererForegroundImageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E55162419388CC500B293B7 /* NUIButtonRendererForegroundImageTests.m */; };
0E55162719388EC900B293B7 /* NUIButtonRendererBackgroundColorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E55162619388EC900B293B7 /* NUIButtonRendererBackgroundColorTests.m */; };
0E5516291938A15000B293B7 /* NUIButtonGradientSnapshotTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E5516281938A15000B293B7 /* NUIButtonGradientSnapshotTest.m */; };
0E55162C1938BDC500B293B7 /* UIBarButtonRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E55162B1938BDC500B293B7 /* UIBarButtonRendererTests.m */; };
0E55162E1938D5FD00B293B7 /* UIBarButtonRendererBackgroundColorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E55162D1938D5FD00B293B7 /* UIBarButtonRendererBackgroundColorTests.m */; };
0E5516301938D61300B293B7 /* UIBarButtonRendererBackgroundImageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E55162F1938D61300B293B7 /* UIBarButtonRendererBackgroundImageTests.m */; };
0E5516321938D63300B293B7 /* NUIBarButtonSnapshotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E5516311938D63300B293B7 /* NUIBarButtonSnapshotTests.m */; };
0E8A86B218EC07C40027F275 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A0B8637165EE59A005B5756 /* Foundation.framework */; };
0E8A86B318EC07C40027F275 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A0B8635165EE59A005B5756 /* UIKit.framework */; };
0E8A86B918EC07C40027F275 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 0E8A86B718EC07C40027F275 /* InfoPlist.strings */; };
0E8A86C318EC08970027F275 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0E8A86C218EC08970027F275 /* XCTest.framework */; };
0E921406193B791E00101B27 /* NUILabelRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E921405193B791E00101B27 /* NUILabelRendererTests.m */; };
0EA8AA7B193CC01F00E1BD29 /* NUISegmentedControlRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA8AA7A193CC01F00E1BD29 /* NUISegmentedControlRendererTests.m */; };
0EA8AA7D193CCB2C00E1BD29 /* NUISegmentedControlRendererBackgroundImagesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA8AA7C193CCB2C00E1BD29 /* NUISegmentedControlRendererBackgroundImagesTests.m */; };
0EA8AA7F193CCD8A00E1BD29 /* NUISegmentedControlSnapshotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA8AA7E193CCD8A00E1BD29 /* NUISegmentedControlSnapshotTests.m */; };
0EA8AA82193CD38100E1BD29 /* UISliderRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA8AA81193CD38100E1BD29 /* UISliderRendererTests.m */; };
0EA8AA85193DB62900E1BD29 /* NUISwitchRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA8AA84193DB62900E1BD29 /* NUISwitchRendererTests.m */; };
0EA8AA88193DBB5500E1BD29 /* NUITabBarRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA8AA87193DBB5500E1BD29 /* NUITabBarRendererTests.m */; };
0EA8AA8A193DBD3200E1BD29 /* NUITabBarRendererGradientTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA8AA89193DBD3200E1BD29 /* NUITabBarRendererGradientTests.m */; };
0EA8AA8C193DBDF300E1BD29 /* NUITabBarRendererBackgroundImageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA8AA8B193DBDF300E1BD29 /* NUITabBarRendererBackgroundImageTests.m */; };
0EE34299193A116700306AC7 /* NUIControlRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EE34298193A116700306AC7 /* NUIControlRendererTests.m */; };
0EE9CA7C191EC96D00C84934 /* TestTheme.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 0EE9CA7B191EC96D00C84934 /* TestTheme.NUI.nss */; };
0EE9CA7D191ECA0F00C84934 /* TestTheme.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 0EE9CA7B191EC96D00C84934 /* TestTheme.NUI.nss */; };
165D32561BF2239900BF3069 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 165D32551BF2239900BF3069 /* Images.xcassets */; };
3830C7C440594F829971E4C2 /* libPods-NUITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7CC7736AC8944034A5E10550 /* libPods-NUITests.a */; };
3AD433F41D2BD7B5008C4ED5 /* NUIPreprocessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AD433F31D2BD7B5008C4ED5 /* NUIPreprocessor.m */; };
41A0DE98FD464C508748F886 /* libPods-NUIDemo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B8B8BB2BB5E6412588AE14FA /* libPods-NUIDemo.a */; };
4A0B8636165EE59A005B5756 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A0B8635165EE59A005B5756 /* UIKit.framework */; };
4A0B8638165EE59A005B5756 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A0B8637165EE59A005B5756 /* Foundation.framework */; };
4A0B863A165EE59A005B5756 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A0B8639165EE59A005B5756 /* CoreGraphics.framework */; };
4A0B8640165EE59A005B5756 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 4A0B863E165EE59A005B5756 /* InfoPlist.strings */; };
4A0B8642165EE59A005B5756 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0B8641165EE59A005B5756 /* main.m */; };
4A0B8646165EE59A005B5756 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0B8645165EE59A005B5756 /* AppDelegate.m */; };
4A0B864C165EE59A005B5756 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0B864B165EE59A005B5756 /* ViewController.m */; };
4A0B8681165EE917005B5756 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A0B8680165EE917005B5756 /* QuartzCore.framework */; };
4A0B8687165F1383005B5756 /* NUIDemoTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0B8686165F1383005B5756 /* NUIDemoTableViewController.m */; };
4A38831116C7268000DB99C2 /* NUIWindowRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A38831016C7268000DB99C2 /* NUIWindowRenderer.m */; };
4A38831516C7269F00DB99C2 /* UIWindow+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A38831416C7269F00DB99C2 /* UIWindow+NUI.m */; };
4A4FC6341663141D0058031B /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A4FC62016629C4D0058031B /* CoreImage.framework */; };
4A55F078167570C10056753C /* UIView+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A55F077167570C10056753C /* UIView+NUI.m */; };
4A55F07C1675718F0056753C /* UILabel+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A55F07B1675718F0056753C /* UILabel+NUI.m */; };
4A55F07F167573D10056753C /* UINavigationBar+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A55F07E167573D10056753C /* UINavigationBar+NUI.m */; };
4A55F08216758E4E0056753C /* UINavigationItem+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A55F08116758E4D0056753C /* UINavigationItem+NUI.m */; };
4A55F08516758E9D0056753C /* UISegmentedControl+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A55F08416758E9D0056753C /* UISegmentedControl+NUI.m */; };
4A55F08816758EDA0056753C /* UITableViewCell+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A55F08716758EDA0056753C /* UITableViewCell+NUI.m */; };
4A55F08B16758F360056753C /* UITextField+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A55F08A16758F360056753C /* UITextField+NUI.m */; };
4A5B5B2916F6471400CF8D16 /* NUIProgressViewRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A5B5B2816F6471400CF8D16 /* NUIProgressViewRenderer.m */; };
4A744B0B1691058C0068F3CF /* ProgrammaticallyCreatedViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A744B0A1691058B0068F3CF /* ProgrammaticallyCreatedViewController.m */; };
4A744B19169904520068F3CF /* NUIFileMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A744B18169904500068F3CF /* NUIFileMonitor.m */; };
4A779342167560FF00B5EE81 /* UIButton+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A779340167560FF00B5EE81 /* UIButton+NUI.m */; };
4A7793451675619500B5EE81 /* UITabBar+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A7793441675619500B5EE81 /* UITabBar+NUI.m */; };
4A7793481675625800B5EE81 /* NUITabBarItemRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A7793471675625800B5EE81 /* NUITabBarItemRenderer.m */; };
4A77934B1675635100B5EE81 /* UITabBarItem+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A77934A1675635100B5EE81 /* UITabBarItem+NUI.m */; };
4A77934E1675647A00B5EE81 /* NUISwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A77934D1675647A00B5EE81 /* NUISwizzler.m */; };
4A7793511675687C00B5EE81 /* UIBarButtonItem+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A7793501675687C00B5EE81 /* UIBarButtonItem+NUI.m */; };
4A9965E5169FB56800DAA38A /* Blue.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 4A9965DE169FB56800DAA38A /* Blue.NUI.nss */; };
4A9965E6169FB56800DAA38A /* Default.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 4A9965DF169FB56800DAA38A /* Default.NUI.nss */; };
4A9965E7169FB56800DAA38A /* Googolplex.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 4A9965E0169FB56800DAA38A /* Googolplex.NUI.nss */; };
4A9965E8169FB56800DAA38A /* Round.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 4A9965E1169FB56800DAA38A /* Round.NUI.nss */; };
4A9965E9169FB56800DAA38A /* Route.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 4A9965E2169FB56800DAA38A /* Route.NUI.nss */; };
4A9965EA169FB56800DAA38A /* SkyBlue.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 4A9965E3169FB56800DAA38A /* SkyBlue.NUI.nss */; };
4A9965EB169FB56800DAA38A /* Switchboard.NUI.nss in Resources */ = {isa = PBXBuildFile; fileRef = 4A9965E4169FB56800DAA38A /* Switchboard.NUI.nss */; };
4AAAFE7C166FD32600A0D34D /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4AAAFE7B166FD32600A0D34D /* Default-568h@2x.png */; };
4ADA71C616A0F15C00BDCF81 /* UISearchBar+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ADA71C516A0F15C00BDCF81 /* UISearchBar+NUI.m */; };
4ADA71CA16A103CD00BDCF81 /* NUISearchBarRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ADA71C916A103CD00BDCF81 /* NUISearchBarRenderer.m */; };
4E22C2E21C9BC86D00B0847E /* NUITableViewCellRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E22C2E11C9BC86D00B0847E /* NUITableViewCellRendererTests.m */; };
4E61356E1C964C7A0005CA52 /* NUITextInputTraitsRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E860DD71C9642EF006F3B0E /* NUITextInputTraitsRenderer.m */; };
4E6135711C968D520005CA52 /* NUITextViewRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E6135701C968D520005CA52 /* NUITextViewRendererTests.m */; };
4E860DDA1C964897006F3B0E /* NUITextFieldRendererTextInputTraitsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E860DD91C964897006F3B0E /* NUITextFieldRendererTextInputTraitsTests.m */; };
5B5888C31992BD15005F1ACB /* Assets in Resources */ = {isa = PBXBuildFile; fileRef = 5B5888C21992BD15005F1ACB /* Assets */; };
5B5888C41992BD1C005F1ACB /* Assets in Resources */ = {isa = PBXBuildFile; fileRef = 5B5888C21992BD15005F1ACB /* Assets */; };
5B5888C61992BDA7005F1ACB /* NUIButtonRendererSubdirectoryImageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B5888C51992BDA7005F1ACB /* NUIButtonRendererSubdirectoryImageTests.m */; };
7C5A17A81CCE1435001288C5 /* NUIActivityIndicatorRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C5A17A71CCE1435001288C5 /* NUIActivityIndicatorRenderer.m */; };
7C5A17AB1CCE1822001288C5 /* NUIActivityIndicatorRendererTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C5A17AA1CCE1822001288C5 /* NUIActivityIndicatorRendererTests.m */; };
7C5A17AE1CCE19BC001288C5 /* UIActivityIndicatorView+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C5A17AD1CCE19BC001288C5 /* UIActivityIndicatorView+NUI.m */; };
832B9C1B176AEADA0054F06E /* iPad Storyboard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 832B9C19176AEADA0054F06E /* iPad Storyboard.storyboard */; };
832B9C1E176AEAED0054F06E /* iPhone Storyboard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 832B9C1C176AEAED0054F06E /* iPhone Storyboard.storyboard */; };
89B940701671418200850A9A /* NUIAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940241671418100850A9A /* NUIAppearance.m */; };
89B940711671418200850A9A /* NUIConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940261671418100850A9A /* NUIConverter.m */; };
89B940721671418200850A9A /* NUIGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940281671418100850A9A /* NUIGraphics.m */; };
89B940731671418200850A9A /* NUIRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B9402A1671418100850A9A /* NUIRenderer.m */; };
89B940741671418200850A9A /* NUISettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B9402C1671418100850A9A /* NUISettings.m */; };
89B940751671418200850A9A /* NUIStyleParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B9402E1671418100850A9A /* NUIStyleParser.m */; };
89B940761671418200850A9A /* NUIUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940301671418100850A9A /* NUIUtilities.m */; };
89B940771671418200850A9A /* NUIBarButtonItemRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940331671418100850A9A /* NUIBarButtonItemRenderer.m */; };
89B940781671418200850A9A /* NUIButtonRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940351671418100850A9A /* NUIButtonRenderer.m */; };
89B940791671418200850A9A /* NUILabelRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940371671418100850A9A /* NUILabelRenderer.m */; };
89B9407A1671418200850A9A /* NUINavigationBarRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940391671418100850A9A /* NUINavigationBarRenderer.m */; };
89B9407B1671418200850A9A /* NUINavigationItemRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B9403B1671418100850A9A /* NUINavigationItemRenderer.m */; };
89B9407C1671418200850A9A /* NUISegmentedControlRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B9403D1671418100850A9A /* NUISegmentedControlRenderer.m */; };
89B9407D1671418200850A9A /* NUITabBarRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B9403F1671418100850A9A /* NUITabBarRenderer.m */; };
89B9407E1671418200850A9A /* NUITableViewCellRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940411671418100850A9A /* NUITableViewCellRenderer.m */; };
89B9407F1671418200850A9A /* NUITextFieldRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940431671418100850A9A /* NUITextFieldRenderer.m */; };
89B940801671418200850A9A /* NUIViewRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 89B940451671418100850A9A /* NUIViewRenderer.m */; };
89B940811671418200850A9A /* NUIStyle.nss in Resources */ = {isa = PBXBuildFile; fileRef = 89B940461671418100850A9A /* NUIStyle.nss */; };
89B940841671418200850A9A /* NUIViewBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 89B9404A1671418100850A9A /* NUIViewBackground.png */; };
B51BC28A169724A3004A38F8 /* UISwitch+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = B51BC289169724A3004A38F8 /* UISwitch+NUI.m */; };
B51BC28E16972527004A38F8 /* NUISwitchRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = B51BC28D16972527004A38F8 /* NUISwitchRenderer.m */; };
CB8A031017CC1F7C0065A7DD /* NUITextViewRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = CB8A030F17CC1F7C0065A7DD /* NUITextViewRenderer.m */; };
CB8A031317CC1FCB0065A7DD /* UITextView+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = CB8A031217CC1FCB0065A7DD /* UITextView+NUI.m */; };
D8E7168116B8AF4400686854 /* NUIControlRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E7168016B8AF4300686854 /* NUIControlRenderer.m */; };
D8E7168516B9980300686854 /* UIControl+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E7168416B9980300686854 /* UIControl+NUI.m */; };
D983DEE5169DBCCD00A3A180 /* NUIToolbarRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = D983DEE4169DBCCC00A3A180 /* NUIToolbarRenderer.m */; };
D983DEE8169DC05300A3A180 /* UIToolbar+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = D983DEE7169DC05300A3A180 /* UIToolbar+NUI.m */; };
D983DF1C169DC84600A3A180 /* UISlider+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = D983DF1B169DC84500A3A180 /* UISlider+NUI.m */; };
D983DF1F169DC87800A3A180 /* NUISliderRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = D983DF1E169DC87500A3A180 /* NUISliderRenderer.m */; };
DBB82A8B1C5C2DDF00A483D3 /* NUIPageControlRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB82A8A1C5C2DDF00A483D3 /* NUIPageControlRenderer.m */; };
DBB82A8E1C5C2FC900A483D3 /* UIPageControl+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB82A8D1C5C2FC900A483D3 /* UIPageControl+NUI.m */; };
E291BBD7179C89470016BC1D /* NUITableViewRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = E291BBD6179C89470016BC1D /* NUITableViewRenderer.m */; };
E291BBDA179C89710016BC1D /* UITableView+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = E291BBD9179C89710016BC1D /* UITableView+NUI.m */; };
EAB69D43188625E900358420 /* NUIDeclaration.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB69D30188625E900358420 /* NUIDeclaration.m */; };
EAB69D44188625E900358420 /* NUIDefinition.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB69D32188625E900358420 /* NUIDefinition.m */; };
EAB69D45188625E900358420 /* NUIParserDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB69D34188625E900358420 /* NUIParserDelegate.m */; };
EAB69D46188625E900358420 /* NUIRuleSet.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB69D36188625E900358420 /* NUIRuleSet.m */; };
EAB69D47188625E900358420 /* NUISelectorSet.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB69D38188625E900358420 /* NUISelectorSet.m */; };
EAB69D48188625E900358420 /* NUIStyleSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB69D3A188625E900358420 /* NUIStyleSheet.m */; };
EAB69D4A188625E900358420 /* NUITokeniserDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB69D3E188625E900358420 /* NUITokeniserDelegate.m */; };
EAB69D4C188625E900358420 /* NUIVariableToken.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB69D42188625E900358420 /* NUIVariableToken.m */; };
EADA4809188DD9080060F8BC /* NUIMediaBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = EADA4808188DD9080060F8BC /* NUIMediaBlock.m */; };
EADA480C188DE0E00060F8BC /* NUIMediaOptionSet.m in Sources */ = {isa = PBXBuildFile; fileRef = EADA480B188DE0E00060F8BC /* NUIMediaOptionSet.m */; };
EADA480F188F10270060F8BC /* NUIStyleSheetItem.m in Sources */ = {isa = PBXBuildFile; fileRef = EADA480E188F10270060F8BC /* NUIStyleSheetItem.m */; };
FC280DB916F127DE00B01664 /* UIProgressView+NUI.m in Sources */ = {isa = PBXBuildFile; fileRef = FC280DB816F127DE00B01664 /* UIProgressView+NUI.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
0E8A86BD18EC07C40027F275 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4A0B8628165EE59A005B5756 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4A0B8630165EE59A005B5756;
remoteInfo = NUIDemo;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0E3F5DFC193C5FB9003F6A77 /* NUINavigationBarRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUINavigationBarRendererTests.m; sourceTree = "<group>"; };
0E3F5DFE193C64AD003F6A77 /* shadow_image.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = shadow_image.png; sourceTree = "<group>"; };
0E3F5DFF193C64AD003F6A77 /* shadow_image@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "shadow_image@2x.png"; sourceTree = "<group>"; };
0E3F5E04193C6D90003F6A77 /* NUINavigationBarRendererGradientTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUINavigationBarRendererGradientTest.m; sourceTree = "<group>"; };
0E3F5E07193C76C3003F6A77 /* NUIProgressViewRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIProgressViewRendererTests.m; sourceTree = "<group>"; };
0E3F5E0A193C7C1F003F6A77 /* NUISearchBarRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISearchBarRendererTests.m; sourceTree = "<group>"; };
0E3F5E0C193C7EA1003F6A77 /* NUISearchBarRendererGradientTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISearchBarRendererGradientTest.m; sourceTree = "<group>"; };
0E55160F1938727100B293B7 /* background_image@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "background_image@2x.png"; sourceTree = "<group>"; };
0E5516111938738C00B293B7 /* background_image.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background_image.png; sourceTree = "<group>"; };
0E55161A1938891000B293B7 /* NUIButtonRendererBackgroundImageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIButtonRendererBackgroundImageTests.m; sourceTree = "<group>"; };
0E55161B1938891000B293B7 /* NUIButtonRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIButtonRendererTests.m; sourceTree = "<group>"; };
0E55161E19388C1E00B293B7 /* foreground_image.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = foreground_image.png; sourceTree = "<group>"; };
0E55161F19388C1E00B293B7 /* foreground_image@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "foreground_image@2x.png"; sourceTree = "<group>"; };
0E55162419388CC500B293B7 /* NUIButtonRendererForegroundImageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIButtonRendererForegroundImageTests.m; sourceTree = "<group>"; };
0E55162619388EC900B293B7 /* NUIButtonRendererBackgroundColorTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIButtonRendererBackgroundColorTests.m; sourceTree = "<group>"; };
0E5516281938A15000B293B7 /* NUIButtonGradientSnapshotTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIButtonGradientSnapshotTest.m; sourceTree = "<group>"; };
0E55162B1938BDC500B293B7 /* UIBarButtonRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIBarButtonRendererTests.m; sourceTree = "<group>"; };
0E55162D1938D5FD00B293B7 /* UIBarButtonRendererBackgroundColorTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIBarButtonRendererBackgroundColorTests.m; sourceTree = "<group>"; };
0E55162F1938D61300B293B7 /* UIBarButtonRendererBackgroundImageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIBarButtonRendererBackgroundImageTests.m; sourceTree = "<group>"; };
0E5516311938D63300B293B7 /* NUIBarButtonSnapshotTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIBarButtonSnapshotTests.m; sourceTree = "<group>"; };
0E8A86AF18EC07C40027F275 /* NUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
0E8A86B618EC07C40027F275 /* NUITests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "NUITests-Info.plist"; sourceTree = "<group>"; };
0E8A86B818EC07C40027F275 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
0E8A86BC18EC07C40027F275 /* NUITests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NUITests-Prefix.pch"; sourceTree = "<group>"; };
0E8A86C218EC08970027F275 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
0E921405193B791E00101B27 /* NUILabelRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUILabelRendererTests.m; sourceTree = "<group>"; };
0EA8AA7A193CC01F00E1BD29 /* NUISegmentedControlRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISegmentedControlRendererTests.m; sourceTree = "<group>"; };
0EA8AA7C193CCB2C00E1BD29 /* NUISegmentedControlRendererBackgroundImagesTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISegmentedControlRendererBackgroundImagesTests.m; sourceTree = "<group>"; };
0EA8AA7E193CCD8A00E1BD29 /* NUISegmentedControlSnapshotTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISegmentedControlSnapshotTests.m; sourceTree = "<group>"; };
0EA8AA81193CD38100E1BD29 /* UISliderRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UISliderRendererTests.m; sourceTree = "<group>"; };
0EA8AA84193DB62900E1BD29 /* NUISwitchRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISwitchRendererTests.m; sourceTree = "<group>"; };
0EA8AA87193DBB5500E1BD29 /* NUITabBarRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITabBarRendererTests.m; sourceTree = "<group>"; };
0EA8AA89193DBD3200E1BD29 /* NUITabBarRendererGradientTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITabBarRendererGradientTests.m; sourceTree = "<group>"; };
0EA8AA8B193DBDF300E1BD29 /* NUITabBarRendererBackgroundImageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITabBarRendererBackgroundImageTests.m; sourceTree = "<group>"; };
0EE34298193A116700306AC7 /* NUIControlRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIControlRendererTests.m; sourceTree = "<group>"; };
0EE9CA7B191EC96D00C84934 /* TestTheme.NUI.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TestTheme.NUI.nss; sourceTree = "<group>"; };
165D32551BF2239900BF3069 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
1B8E11A50FE5F75C66ACDBBD /* Pods-NUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NUITests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NUITests/Pods-NUITests.debug.xcconfig"; sourceTree = "<group>"; };
3AD433F21D2BD7B5008C4ED5 /* NUIPreprocessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIPreprocessor.h; sourceTree = "<group>"; };
3AD433F31D2BD7B5008C4ED5 /* NUIPreprocessor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIPreprocessor.m; sourceTree = "<group>"; };
3AE80CFA17E0EB290065FB3D /* NUIConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIConstants.h; sourceTree = "<group>"; };
4A0B8631165EE59A005B5756 /* NUIDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NUIDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
4A0B8635165EE59A005B5756 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
4A0B8637165EE59A005B5756 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
4A0B8639165EE59A005B5756 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
4A0B863D165EE59A005B5756 /* NUIDemo-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "NUIDemo-Info.plist"; sourceTree = "<group>"; };
4A0B863F165EE59A005B5756 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
4A0B8641165EE59A005B5756 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
4A0B8643165EE59A005B5756 /* NUIDemo-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NUIDemo-Prefix.pch"; sourceTree = "<group>"; };
4A0B8644165EE59A005B5756 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
4A0B8645165EE59A005B5756 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
4A0B864A165EE59A005B5756 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
4A0B864B165EE59A005B5756 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
4A0B8680165EE917005B5756 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
4A0B8685165F1382005B5756 /* NUIDemoTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIDemoTableViewController.h; sourceTree = "<group>"; };
4A0B8686165F1383005B5756 /* NUIDemoTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIDemoTableViewController.m; sourceTree = "<group>"; };
4A38830F16C7268000DB99C2 /* NUIWindowRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIWindowRenderer.h; sourceTree = "<group>"; };
4A38831016C7268000DB99C2 /* NUIWindowRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIWindowRenderer.m; sourceTree = "<group>"; };
4A38831316C7269F00DB99C2 /* UIWindow+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+NUI.h"; sourceTree = "<group>"; };
4A38831416C7269F00DB99C2 /* UIWindow+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+NUI.m"; sourceTree = "<group>"; };
4A4FC62016629C4D0058031B /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
4A55F076167570C10056753C /* UIView+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+NUI.h"; sourceTree = "<group>"; };
4A55F077167570C10056753C /* UIView+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+NUI.m"; sourceTree = "<group>"; };
4A55F07A1675718F0056753C /* UILabel+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+NUI.h"; sourceTree = "<group>"; };
4A55F07B1675718F0056753C /* UILabel+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+NUI.m"; sourceTree = "<group>"; };
4A55F07D167573D10056753C /* UINavigationBar+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationBar+NUI.h"; sourceTree = "<group>"; };
4A55F07E167573D10056753C /* UINavigationBar+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationBar+NUI.m"; sourceTree = "<group>"; };
4A55F08016758E4D0056753C /* UINavigationItem+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationItem+NUI.h"; sourceTree = "<group>"; };
4A55F08116758E4D0056753C /* UINavigationItem+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationItem+NUI.m"; sourceTree = "<group>"; };
4A55F08316758E9D0056753C /* UISegmentedControl+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UISegmentedControl+NUI.h"; sourceTree = "<group>"; };
4A55F08416758E9D0056753C /* UISegmentedControl+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UISegmentedControl+NUI.m"; sourceTree = "<group>"; };
4A55F08616758ED90056753C /* UITableViewCell+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewCell+NUI.h"; sourceTree = "<group>"; };
4A55F08716758EDA0056753C /* UITableViewCell+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewCell+NUI.m"; sourceTree = "<group>"; };
4A55F08916758F360056753C /* UITextField+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextField+NUI.h"; sourceTree = "<group>"; };
4A55F08A16758F360056753C /* UITextField+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextField+NUI.m"; sourceTree = "<group>"; };
4A5B5B2716F6471400CF8D16 /* NUIProgressViewRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIProgressViewRenderer.h; sourceTree = "<group>"; };
4A5B5B2816F6471400CF8D16 /* NUIProgressViewRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIProgressViewRenderer.m; sourceTree = "<group>"; };
4A744B09169105890068F3CF /* ProgrammaticallyCreatedViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProgrammaticallyCreatedViewController.h; sourceTree = "<group>"; };
4A744B0A1691058B0068F3CF /* ProgrammaticallyCreatedViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProgrammaticallyCreatedViewController.m; sourceTree = "<group>"; };
4A744B171699044F0068F3CF /* NUIFileMonitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIFileMonitor.h; sourceTree = "<group>"; };
4A744B18169904500068F3CF /* NUIFileMonitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIFileMonitor.m; sourceTree = "<group>"; };
4A779340167560FF00B5EE81 /* UIButton+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+NUI.m"; sourceTree = "<group>"; };
4A779341167560FF00B5EE81 /* UIButton+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+NUI.h"; sourceTree = "<group>"; };
4A7793431675619500B5EE81 /* UITabBar+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITabBar+NUI.h"; sourceTree = "<group>"; };
4A7793441675619500B5EE81 /* UITabBar+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITabBar+NUI.m"; sourceTree = "<group>"; };
4A7793461675625800B5EE81 /* NUITabBarItemRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUITabBarItemRenderer.h; sourceTree = "<group>"; };
4A7793471675625800B5EE81 /* NUITabBarItemRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITabBarItemRenderer.m; sourceTree = "<group>"; };
4A7793491675635100B5EE81 /* UITabBarItem+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITabBarItem+NUI.h"; sourceTree = "<group>"; };
4A77934A1675635100B5EE81 /* UITabBarItem+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITabBarItem+NUI.m"; sourceTree = "<group>"; };
4A77934C1675647900B5EE81 /* NUISwizzler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUISwizzler.h; sourceTree = "<group>"; };
4A77934D1675647A00B5EE81 /* NUISwizzler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISwizzler.m; sourceTree = "<group>"; };
4A77934F1675687C00B5EE81 /* UIBarButtonItem+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+NUI.h"; sourceTree = "<group>"; };
4A7793501675687C00B5EE81 /* UIBarButtonItem+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+NUI.m"; sourceTree = "<group>"; };
4A9965DE169FB56800DAA38A /* Blue.NUI.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Blue.NUI.nss; sourceTree = "<group>"; };
4A9965DF169FB56800DAA38A /* Default.NUI.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Default.NUI.nss; sourceTree = "<group>"; };
4A9965E0169FB56800DAA38A /* Googolplex.NUI.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Googolplex.NUI.nss; sourceTree = "<group>"; };
4A9965E1169FB56800DAA38A /* Round.NUI.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Round.NUI.nss; sourceTree = "<group>"; };
4A9965E2169FB56800DAA38A /* Route.NUI.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Route.NUI.nss; sourceTree = "<group>"; };
4A9965E3169FB56800DAA38A /* SkyBlue.NUI.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SkyBlue.NUI.nss; sourceTree = "<group>"; };
4A9965E4169FB56800DAA38A /* Switchboard.NUI.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Switchboard.NUI.nss; sourceTree = "<group>"; };
4AAAFE7B166FD32600A0D34D /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
4ADA71C416A0F15C00BDCF81 /* UISearchBar+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UISearchBar+NUI.h"; sourceTree = "<group>"; };
4ADA71C516A0F15C00BDCF81 /* UISearchBar+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UISearchBar+NUI.m"; sourceTree = "<group>"; };
4ADA71C816A103CD00BDCF81 /* NUISearchBarRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUISearchBarRenderer.h; sourceTree = "<group>"; };
4ADA71C916A103CD00BDCF81 /* NUISearchBarRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISearchBarRenderer.m; sourceTree = "<group>"; };
4E22C2E11C9BC86D00B0847E /* NUITableViewCellRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUITableViewCellRendererTests.m; path = UITableViewCell/NUITableViewCellRendererTests.m; sourceTree = "<group>"; };
4E6135701C968D520005CA52 /* NUITextViewRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUITextViewRendererTests.m; path = UITextView/NUITextViewRendererTests.m; sourceTree = "<group>"; };
4E860DD61C9642EF006F3B0E /* NUITextInputTraitsRenderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NUITextInputTraitsRenderer.h; sourceTree = "<group>"; };
4E860DD71C9642EF006F3B0E /* NUITextInputTraitsRenderer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NUITextInputTraitsRenderer.m; sourceTree = "<group>"; };
4E860DD91C964897006F3B0E /* NUITextFieldRendererTextInputTraitsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUITextFieldRendererTextInputTraitsTests.m; path = UITextField/NUITextFieldRendererTextInputTraitsTests.m; sourceTree = "<group>"; };
5B5888C21992BD15005F1ACB /* Assets */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Assets; sourceTree = "<group>"; };
5B5888C51992BDA7005F1ACB /* NUIButtonRendererSubdirectoryImageTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIButtonRendererSubdirectoryImageTests.m; sourceTree = "<group>"; };
6327BDA600E6A42FDF1220F4 /* Pods-NUIDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NUIDemo.release.xcconfig"; path = "Pods/Target Support Files/Pods-NUIDemo/Pods-NUIDemo.release.xcconfig"; sourceTree = "<group>"; };
7C5A17A61CCE1435001288C5 /* NUIActivityIndicatorRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIActivityIndicatorRenderer.h; sourceTree = "<group>"; };
7C5A17A71CCE1435001288C5 /* NUIActivityIndicatorRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIActivityIndicatorRenderer.m; sourceTree = "<group>"; };
7C5A17AA1CCE1822001288C5 /* NUIActivityIndicatorRendererTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIActivityIndicatorRendererTests.m; path = UIActivityIndicatorView/NUIActivityIndicatorRendererTests.m; sourceTree = "<group>"; };
7C5A17AC1CCE19BC001288C5 /* UIActivityIndicatorView+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIActivityIndicatorView+NUI.h"; sourceTree = "<group>"; };
7C5A17AD1CCE19BC001288C5 /* UIActivityIndicatorView+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIActivityIndicatorView+NUI.m"; sourceTree = "<group>"; };
7CC7736AC8944034A5E10550 /* libPods-NUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
80CA9B780E980B9CA99F0367 /* Pods-NUIDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NUIDemo.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NUIDemo/Pods-NUIDemo.debug.xcconfig"; sourceTree = "<group>"; };
832B9C1A176AEADA0054F06E /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = "en.lproj/iPad Storyboard.storyboard"; sourceTree = "<group>"; };
832B9C1D176AEAED0054F06E /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = "en.lproj/iPhone Storyboard.storyboard"; sourceTree = "<group>"; };
89B940231671418100850A9A /* NUIAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIAppearance.h; sourceTree = "<group>"; };
89B940241671418100850A9A /* NUIAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIAppearance.m; sourceTree = "<group>"; };
89B940251671418100850A9A /* NUIConverter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIConverter.h; sourceTree = "<group>"; };
89B940261671418100850A9A /* NUIConverter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIConverter.m; sourceTree = "<group>"; };
89B940271671418100850A9A /* NUIGraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIGraphics.h; sourceTree = "<group>"; };
89B940281671418100850A9A /* NUIGraphics.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIGraphics.m; sourceTree = "<group>"; };
89B940291671418100850A9A /* NUIRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIRenderer.h; sourceTree = "<group>"; };
89B9402A1671418100850A9A /* NUIRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIRenderer.m; sourceTree = "<group>"; };
89B9402B1671418100850A9A /* NUISettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUISettings.h; sourceTree = "<group>"; };
89B9402C1671418100850A9A /* NUISettings.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISettings.m; sourceTree = "<group>"; };
89B9402D1671418100850A9A /* NUIStyleParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIStyleParser.h; sourceTree = "<group>"; };
89B9402E1671418100850A9A /* NUIStyleParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIStyleParser.m; sourceTree = "<group>"; };
89B9402F1671418100850A9A /* NUIUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIUtilities.h; sourceTree = "<group>"; };
89B940301671418100850A9A /* NUIUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIUtilities.m; sourceTree = "<group>"; };
89B940321671418100850A9A /* NUIBarButtonItemRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIBarButtonItemRenderer.h; sourceTree = "<group>"; };
89B940331671418100850A9A /* NUIBarButtonItemRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIBarButtonItemRenderer.m; sourceTree = "<group>"; };
89B940341671418100850A9A /* NUIButtonRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIButtonRenderer.h; sourceTree = "<group>"; };
89B940351671418100850A9A /* NUIButtonRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIButtonRenderer.m; sourceTree = "<group>"; };
89B940361671418100850A9A /* NUILabelRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUILabelRenderer.h; sourceTree = "<group>"; };
89B940371671418100850A9A /* NUILabelRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUILabelRenderer.m; sourceTree = "<group>"; };
89B940381671418100850A9A /* NUINavigationBarRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUINavigationBarRenderer.h; sourceTree = "<group>"; };
89B940391671418100850A9A /* NUINavigationBarRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUINavigationBarRenderer.m; sourceTree = "<group>"; };
89B9403A1671418100850A9A /* NUINavigationItemRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUINavigationItemRenderer.h; sourceTree = "<group>"; };
89B9403B1671418100850A9A /* NUINavigationItemRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUINavigationItemRenderer.m; sourceTree = "<group>"; };
89B9403C1671418100850A9A /* NUISegmentedControlRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUISegmentedControlRenderer.h; sourceTree = "<group>"; };
89B9403D1671418100850A9A /* NUISegmentedControlRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISegmentedControlRenderer.m; sourceTree = "<group>"; };
89B9403E1671418100850A9A /* NUITabBarRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUITabBarRenderer.h; sourceTree = "<group>"; };
89B9403F1671418100850A9A /* NUITabBarRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITabBarRenderer.m; sourceTree = "<group>"; };
89B940401671418100850A9A /* NUITableViewCellRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUITableViewCellRenderer.h; sourceTree = "<group>"; };
89B940411671418100850A9A /* NUITableViewCellRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITableViewCellRenderer.m; sourceTree = "<group>"; };
89B940421671418100850A9A /* NUITextFieldRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUITextFieldRenderer.h; sourceTree = "<group>"; };
89B940431671418100850A9A /* NUITextFieldRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITextFieldRenderer.m; sourceTree = "<group>"; };
89B940441671418100850A9A /* NUIViewRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIViewRenderer.h; sourceTree = "<group>"; };
89B940451671418100850A9A /* NUIViewRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIViewRenderer.m; sourceTree = "<group>"; };
89B940461671418100850A9A /* NUIStyle.nss */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NUIStyle.nss; sourceTree = "<group>"; };
89B9404A1671418100850A9A /* NUIViewBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NUIViewBackground.png; sourceTree = "<group>"; };
945E0E35381989455733E516 /* Pods-NUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-NUITests/Pods-NUITests.release.xcconfig"; sourceTree = "<group>"; };
B51BC288169724A3004A38F8 /* UISwitch+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UISwitch+NUI.h"; sourceTree = "<group>"; };
B51BC289169724A3004A38F8 /* UISwitch+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UISwitch+NUI.m"; sourceTree = "<group>"; };
B51BC28C16972527004A38F8 /* NUISwitchRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUISwitchRenderer.h; sourceTree = "<group>"; };
B51BC28D16972527004A38F8 /* NUISwitchRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISwitchRenderer.m; sourceTree = "<group>"; };
B8B8BB2BB5E6412588AE14FA /* libPods-NUIDemo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NUIDemo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
CB8A030E17CC1F7C0065A7DD /* NUITextViewRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUITextViewRenderer.h; sourceTree = "<group>"; };
CB8A030F17CC1F7C0065A7DD /* NUITextViewRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITextViewRenderer.m; sourceTree = "<group>"; };
CB8A031117CC1FCB0065A7DD /* UITextView+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+NUI.h"; sourceTree = "<group>"; };
CB8A031217CC1FCB0065A7DD /* UITextView+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+NUI.m"; sourceTree = "<group>"; };
D8E7167F16B8AF4300686854 /* NUIControlRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIControlRenderer.h; sourceTree = "<group>"; };
D8E7168016B8AF4300686854 /* NUIControlRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIControlRenderer.m; sourceTree = "<group>"; };
D8E7168316B9980300686854 /* UIControl+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+NUI.h"; sourceTree = "<group>"; };
D8E7168416B9980300686854 /* UIControl+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+NUI.m"; sourceTree = "<group>"; };
D983DEE3169DBCCB00A3A180 /* NUIToolbarRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIToolbarRenderer.h; sourceTree = "<group>"; };
D983DEE4169DBCCC00A3A180 /* NUIToolbarRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIToolbarRenderer.m; sourceTree = "<group>"; };
D983DEE6169DC05300A3A180 /* UIToolbar+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIToolbar+NUI.h"; sourceTree = "<group>"; };
D983DEE7169DC05300A3A180 /* UIToolbar+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIToolbar+NUI.m"; sourceTree = "<group>"; };
D983DF1A169DC84500A3A180 /* UISlider+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UISlider+NUI.h"; sourceTree = "<group>"; };
D983DF1B169DC84500A3A180 /* UISlider+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UISlider+NUI.m"; sourceTree = "<group>"; };
D983DF1D169DC87200A3A180 /* NUISliderRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUISliderRenderer.h; sourceTree = "<group>"; };
D983DF1E169DC87500A3A180 /* NUISliderRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUISliderRenderer.m; sourceTree = "<group>"; };
DBB82A891C5C2DDF00A483D3 /* NUIPageControlRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUIPageControlRenderer.h; sourceTree = "<group>"; };
DBB82A8A1C5C2DDF00A483D3 /* NUIPageControlRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUIPageControlRenderer.m; sourceTree = "<group>"; };
DBB82A8C1C5C2FC900A483D3 /* UIPageControl+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIPageControl+NUI.h"; sourceTree = "<group>"; };
DBB82A8D1C5C2FC900A483D3 /* UIPageControl+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIPageControl+NUI.m"; sourceTree = "<group>"; };
E291BBD5179C89470016BC1D /* NUITableViewRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NUITableViewRenderer.h; sourceTree = "<group>"; };
E291BBD6179C89470016BC1D /* NUITableViewRenderer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NUITableViewRenderer.m; sourceTree = "<group>"; };
E291BBD8179C89710016BC1D /* UITableView+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+NUI.h"; sourceTree = "<group>"; };
E291BBD9179C89710016BC1D /* UITableView+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+NUI.m"; sourceTree = "<group>"; };
EAB69D2F188625E900358420 /* NUIDeclaration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIDeclaration.h; path = Parser/NUIDeclaration.h; sourceTree = "<group>"; };
EAB69D30188625E900358420 /* NUIDeclaration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIDeclaration.m; path = Parser/NUIDeclaration.m; sourceTree = "<group>"; };
EAB69D31188625E900358420 /* NUIDefinition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIDefinition.h; path = Parser/NUIDefinition.h; sourceTree = "<group>"; };
EAB69D32188625E900358420 /* NUIDefinition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIDefinition.m; path = Parser/NUIDefinition.m; sourceTree = "<group>"; };
EAB69D33188625E900358420 /* NUIParserDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIParserDelegate.h; path = Parser/NUIParserDelegate.h; sourceTree = "<group>"; };
EAB69D34188625E900358420 /* NUIParserDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIParserDelegate.m; path = Parser/NUIParserDelegate.m; sourceTree = "<group>"; };
EAB69D35188625E900358420 /* NUIRuleSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIRuleSet.h; path = Parser/NUIRuleSet.h; sourceTree = "<group>"; };
EAB69D36188625E900358420 /* NUIRuleSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIRuleSet.m; path = Parser/NUIRuleSet.m; sourceTree = "<group>"; };
EAB69D37188625E900358420 /* NUISelectorSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUISelectorSet.h; path = Parser/NUISelectorSet.h; sourceTree = "<group>"; };
EAB69D38188625E900358420 /* NUISelectorSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUISelectorSet.m; path = Parser/NUISelectorSet.m; sourceTree = "<group>"; };
EAB69D39188625E900358420 /* NUIStyleSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIStyleSheet.h; path = Parser/NUIStyleSheet.h; sourceTree = "<group>"; };
EAB69D3A188625E900358420 /* NUIStyleSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIStyleSheet.m; path = Parser/NUIStyleSheet.m; sourceTree = "<group>"; };
EAB69D3D188625E900358420 /* NUITokeniserDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUITokeniserDelegate.h; path = Parser/NUITokeniserDelegate.h; sourceTree = "<group>"; };
EAB69D3E188625E900358420 /* NUITokeniserDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUITokeniserDelegate.m; path = Parser/NUITokeniserDelegate.m; sourceTree = "<group>"; };
EAB69D41188625E900358420 /* NUIVariableToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIVariableToken.h; path = Parser/NUIVariableToken.h; sourceTree = "<group>"; };
EAB69D42188625E900358420 /* NUIVariableToken.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIVariableToken.m; path = Parser/NUIVariableToken.m; sourceTree = "<group>"; };
EADA4807188DD8FF0060F8BC /* NUIMediaBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIMediaBlock.h; path = Parser/NUIMediaBlock.h; sourceTree = "<group>"; };
EADA4808188DD9080060F8BC /* NUIMediaBlock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIMediaBlock.m; path = Parser/NUIMediaBlock.m; sourceTree = "<group>"; };
EADA480A188DE0D80060F8BC /* NUIMediaOptionSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIMediaOptionSet.h; path = Parser/NUIMediaOptionSet.h; sourceTree = "<group>"; };
EADA480B188DE0E00060F8BC /* NUIMediaOptionSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIMediaOptionSet.m; path = Parser/NUIMediaOptionSet.m; sourceTree = "<group>"; };
EADA480D188F10270060F8BC /* NUIStyleSheetItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NUIStyleSheetItem.h; path = Parser/NUIStyleSheetItem.h; sourceTree = "<group>"; };
EADA480E188F10270060F8BC /* NUIStyleSheetItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NUIStyleSheetItem.m; path = Parser/NUIStyleSheetItem.m; sourceTree = "<group>"; };
FC280DB716F127DE00B01664 /* UIProgressView+NUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIProgressView+NUI.h"; sourceTree = "<group>"; };
FC280DB816F127DE00B01664 /* UIProgressView+NUI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIProgressView+NUI.m"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
0E8A86AC18EC07C40027F275 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0E8A86C318EC08970027F275 /* XCTest.framework in Frameworks */,
0E8A86B318EC07C40027F275 /* UIKit.framework in Frameworks */,
0E8A86B218EC07C40027F275 /* Foundation.framework in Frameworks */,
3830C7C440594F829971E4C2 /* libPods-NUITests.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4A0B862E165EE59A005B5756 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4A4FC6341663141D0058031B /* CoreImage.framework in Frameworks */,
4A0B8681165EE917005B5756 /* QuartzCore.framework in Frameworks */,
4A0B8636165EE59A005B5756 /* UIKit.framework in Frameworks */,
4A0B8638165EE59A005B5756 /* Foundation.framework in Frameworks */,
4A0B863A165EE59A005B5756 /* CoreGraphics.framework in Frameworks */,
41A0DE98FD464C508748F886 /* libPods-NUIDemo.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0E3F5DFB193C5F02003F6A77 /* UINavigationBar */ = {
isa = PBXGroup;
children = (
0E3F5DFC193C5FB9003F6A77 /* NUINavigationBarRendererTests.m */,
0E3F5E04193C6D90003F6A77 /* NUINavigationBarRendererGradientTest.m */,
);
path = UINavigationBar;
sourceTree = "<group>";
};
0E3F5E06193C765A003F6A77 /* UIProgressView */ = {
isa = PBXGroup;
children = (
0E3F5E07193C76C3003F6A77 /* NUIProgressViewRendererTests.m */,
);
path = UIProgressView;
sourceTree = "<group>";
};
0E3F5E09193C7BEE003F6A77 /* UISearchBar */ = {
isa = PBXGroup;
children = (
0E3F5E0A193C7C1F003F6A77 /* NUISearchBarRendererTests.m */,
0E3F5E0C193C7EA1003F6A77 /* NUISearchBarRendererGradientTest.m */,
);
path = UISearchBar;
sourceTree = "<group>";
};
0E55160E1938727100B293B7 /* TestResources */ = {
isa = PBXGroup;
children = (
5B5888C21992BD15005F1ACB /* Assets */,
0E5516111938738C00B293B7 /* background_image.png */,
0E55160F1938727100B293B7 /* background_image@2x.png */,
0E55161E19388C1E00B293B7 /* foreground_image.png */,
0E55161F19388C1E00B293B7 /* foreground_image@2x.png */,
0E3F5DFE193C64AD003F6A77 /* shadow_image.png */,
0E3F5DFF193C64AD003F6A77 /* shadow_image@2x.png */,
);
path = TestResources;
sourceTree = "<group>";
};
0E5516181938891000B293B7 /* UIKitTests */ = {
isa = PBXGroup;
children = (
7C5A17A91CCE177C001288C5 /* UIActivityIndicatorView */,
4E642BAF1C9A567700F31064 /* UITableViewCell */,
4E61356F1C968D260005CA52 /* UITextView */,
4E860DD81C9647F7006F3B0E /* UITextField */,
0E55162A1938BD9200B293B7 /* UIBarButton */,
0E5516191938891000B293B7 /* UIButton */,
0EE342971939405900306AC7 /* UIControl */,
0E921404193B78DE00101B27 /* UILabel */,
0E3F5DFB193C5F02003F6A77 /* UINavigationBar */,
0E3F5E06193C765A003F6A77 /* UIProgressView */,
0E3F5E09193C7BEE003F6A77 /* UISearchBar */,
0EA8AA79193CBFF100E1BD29 /* UISegmentedControl */,
0EA8AA80193CD35200E1BD29 /* UISlider */,
0EA8AA83193DB5FC00E1BD29 /* UISwitch */,
0EA8AA86193DBB1100E1BD29 /* UITabBar */,
);
path = UIKitTests;
sourceTree = "<group>";
};
0E5516191938891000B293B7 /* UIButton */ = {
isa = PBXGroup;
children = (
0E5516281938A15000B293B7 /* NUIButtonGradientSnapshotTest.m */,
0E55162619388EC900B293B7 /* NUIButtonRendererBackgroundColorTests.m */,
0E55161A1938891000B293B7 /* NUIButtonRendererBackgroundImageTests.m */,
0E55162419388CC500B293B7 /* NUIButtonRendererForegroundImageTests.m */,
5B5888C51992BDA7005F1ACB /* NUIButtonRendererSubdirectoryImageTests.m */,
0E55161B1938891000B293B7 /* NUIButtonRendererTests.m */,
);
path = UIButton;
sourceTree = "<group>";
};
0E55162A1938BD9200B293B7 /* UIBarButton */ = {
isa = PBXGroup;
children = (
0E55162B1938BDC500B293B7 /* UIBarButtonRendererTests.m */,
0E55162D1938D5FD00B293B7 /* UIBarButtonRendererBackgroundColorTests.m */,
0E55162F1938D61300B293B7 /* UIBarButtonRendererBackgroundImageTests.m */,
0E5516311938D63300B293B7 /* NUIBarButtonSnapshotTests.m */,
);
path = UIBarButton;
sourceTree = "<group>";
};
0E8A86B418EC07C40027F275 /* NUITests */ = {
isa = PBXGroup;
children = (
0EE9CA7B191EC96D00C84934 /* TestTheme.NUI.nss */,
0E55160E1938727100B293B7 /* TestResources */,
0E8A86B518EC07C40027F275 /* Supporting Files */,
0E5516181938891000B293B7 /* UIKitTests */,
);
path = NUITests;
sourceTree = "<group>";
};
0E8A86B518EC07C40027F275 /* Supporting Files */ = {
isa = PBXGroup;
children = (
0E8A86B618EC07C40027F275 /* NUITests-Info.plist */,
0E8A86B718EC07C40027F275 /* InfoPlist.strings */,
0E8A86BC18EC07C40027F275 /* NUITests-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
0E921404193B78DE00101B27 /* UILabel */ = {
isa = PBXGroup;
children = (
0E921405193B791E00101B27 /* NUILabelRendererTests.m */,
);
path = UILabel;
sourceTree = "<group>";
};
0EA8AA79193CBFF100E1BD29 /* UISegmentedControl */ = {
isa = PBXGroup;
children = (
0EA8AA7A193CC01F00E1BD29 /* NUISegmentedControlRendererTests.m */,
0EA8AA7E193CCD8A00E1BD29 /* NUISegmentedControlSnapshotTests.m */,
0EA8AA7C193CCB2C00E1BD29 /* NUISegmentedControlRendererBackgroundImagesTests.m */,
);
path = UISegmentedControl;
sourceTree = "<group>";
};
0EA8AA80193CD35200E1BD29 /* UISlider */ = {
isa = PBXGroup;
children = (
0EA8AA81193CD38100E1BD29 /* UISliderRendererTests.m */,
);
path = UISlider;
sourceTree = "<group>";
};
0EA8AA83193DB5FC00E1BD29 /* UISwitch */ = {
isa = PBXGroup;
children = (
0EA8AA84193DB62900E1BD29 /* NUISwitchRendererTests.m */,
);
path = UISwitch;
sourceTree = "<group>";
};
0EA8AA86193DBB1100E1BD29 /* UITabBar */ = {
isa = PBXGroup;
children = (
0EA8AA87193DBB5500E1BD29 /* NUITabBarRendererTests.m */,
0EA8AA8B193DBDF300E1BD29 /* NUITabBarRendererBackgroundImageTests.m */,
0EA8AA89193DBD3200E1BD29 /* NUITabBarRendererGradientTests.m */,
);
path = UITabBar;
sourceTree = "<group>";
};
0EE342971939405900306AC7 /* UIControl */ = {
isa = PBXGroup;
children = (
0EE34298193A116700306AC7 /* NUIControlRendererTests.m */,
);
path = UIControl;
sourceTree = "<group>";
};
4A0B8626165EE59A005B5756 = {
isa = PBXGroup;
children = (
4A0B863B165EE59A005B5756 /* NUIDemo */,
0E8A86B418EC07C40027F275 /* NUITests */,
4A0B8634165EE59A005B5756 /* Frameworks */,
4A0B8632165EE59A005B5756 /* Products */,
F996B2068B95454E79C3F5AA /* Pods */,
);
sourceTree = "<group>";
};
4A0B8632165EE59A005B5756 /* Products */ = {
isa = PBXGroup;
children = (
4A0B8631165EE59A005B5756 /* NUIDemo.app */,
0E8A86AF18EC07C40027F275 /* NUITests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
4A0B8634165EE59A005B5756 /* Frameworks */ = {
isa = PBXGroup;
children = (
0E8A86C218EC08970027F275 /* XCTest.framework */,
4A4FC62016629C4D0058031B /* CoreImage.framework */,
4A0B8680165EE917005B5756 /* QuartzCore.framework */,
4A0B8635165EE59A005B5756 /* UIKit.framework */,
4A0B8637165EE59A005B5756 /* Foundation.framework */,
4A0B8639165EE59A005B5756 /* CoreGraphics.framework */,
B8B8BB2BB5E6412588AE14FA /* libPods-NUIDemo.a */,
7CC7736AC8944034A5E10550 /* libPods-NUITests.a */,
);
name = Frameworks;
sourceTree = "<group>";
};
4A0B863B165EE59A005B5756 /* NUIDemo */ = {
isa = PBXGroup;
children = (
89B940211671418100850A9A /* NUI */,
4A0B8685165F1382005B5756 /* NUIDemoTableViewController.h */,
4A0B8686165F1383005B5756 /* NUIDemoTableViewController.m */,
4A744B09169105890068F3CF /* ProgrammaticallyCreatedViewController.h */,
4A744B0A1691058B0068F3CF /* ProgrammaticallyCreatedViewController.m */,
4A0B864A165EE59A005B5756 /* ViewController.h */,
4A0B864B165EE59A005B5756 /* ViewController.m */,
832B9C19176AEADA0054F06E /* iPad Storyboard.storyboard */,
832B9C1C176AEAED0054F06E /* iPhone Storyboard.storyboard */,
4A0B8644165EE59A005B5756 /* AppDelegate.h */,
4A0B8645165EE59A005B5756 /* AppDelegate.m */,
4AAAFE7A166FD2EC00A0D34D /* Resources */,
165D32551BF2239900BF3069 /* Images.xcassets */,
4A0B863C165EE59A005B5756 /* Supporting Files */,
);
path = NUIDemo;
sourceTree = "<group>";
};
4A0B863C165EE59A005B5756 /* Supporting Files */ = {
isa = PBXGroup;
children = (
4A0B863D165EE59A005B5756 /* NUIDemo-Info.plist */,
4A0B863E165EE59A005B5756 /* InfoPlist.strings */,
4A0B8641165EE59A005B5756 /* main.m */,
4A0B8643165EE59A005B5756 /* NUIDemo-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
4A9965DD169FB54400DAA38A /* Themes */ = {
isa = PBXGroup;
children = (
4A9965DE169FB56800DAA38A /* Blue.NUI.nss */,
4A9965DF169FB56800DAA38A /* Default.NUI.nss */,
4A9965E0169FB56800DAA38A /* Googolplex.NUI.nss */,
4A9965E1169FB56800DAA38A /* Round.NUI.nss */,
4A9965E2169FB56800DAA38A /* Route.NUI.nss */,
4A9965E3169FB56800DAA38A /* SkyBlue.NUI.nss */,
4A9965E4169FB56800DAA38A /* Switchboard.NUI.nss */,
);
path = Themes;
sourceTree = "<group>";
};
4AAAFE7A166FD2EC00A0D34D /* Resources */ = {
isa = PBXGroup;
children = (
4AAAFE7B166FD32600A0D34D /* Default-568h@2x.png */,
);
name = Resources;
sourceTree = "<group>";
};
4E61356F1C968D260005CA52 /* UITextView */ = {
isa = PBXGroup;
children = (
4E6135701C968D520005CA52 /* NUITextViewRendererTests.m */,
);
name = UITextView;
sourceTree = "<group>";
};
4E642BAF1C9A567700F31064 /* UITableViewCell */ = {
isa = PBXGroup;
children = (
4E22C2E11C9BC86D00B0847E /* NUITableViewCellRendererTests.m */,
);
name = UITableViewCell;
sourceTree = "<group>";
};
4E860DD81C9647F7006F3B0E /* UITextField */ = {
isa = PBXGroup;
children = (
4E860DD91C964897006F3B0E /* NUITextFieldRendererTextInputTraitsTests.m */,
);
name = UITextField;
sourceTree = "<group>";
};
7C5A17A91CCE177C001288C5 /* UIActivityIndicatorView */ = {
isa = PBXGroup;
children = (
7C5A17AA1CCE1822001288C5 /* NUIActivityIndicatorRendererTests.m */,
);
name = UIActivityIndicatorView;
sourceTree = "<group>";
};
89B940211671418100850A9A /* NUI */ = {
isa = PBXGroup;
children = (
89B940221671418100850A9A /* Core */,
89B940461671418100850A9A /* NUIStyle.nss */,
89B940471671418100850A9A /* Resources */,
4A9965DD169FB54400DAA38A /* Themes */,
89B9404F1671418100850A9A /* UI */,
);
name = NUI;
path = ../../NUI;
sourceTree = "<group>";
};
89B940221671418100850A9A /* Core */ = {
isa = PBXGroup;
children = (
89B940231671418100850A9A /* NUIAppearance.h */,
89B940241671418100850A9A /* NUIAppearance.m */,
89B940251671418100850A9A /* NUIConverter.h */,
89B940261671418100850A9A /* NUIConverter.m */,
4A744B171699044F0068F3CF /* NUIFileMonitor.h */,
4A744B18169904500068F3CF /* NUIFileMonitor.m */,
89B940271671418100850A9A /* NUIGraphics.h */,
89B940281671418100850A9A /* NUIGraphics.m */,
3AD433F21D2BD7B5008C4ED5 /* NUIPreprocessor.h */,
3AD433F31D2BD7B5008C4ED5 /* NUIPreprocessor.m */,
89B940291671418100850A9A /* NUIRenderer.h */,
89B9402A1671418100850A9A /* NUIRenderer.m */,
89B9402B1671418100850A9A /* NUISettings.h */,
89B9402C1671418100850A9A /* NUISettings.m */,
89B9402D1671418100850A9A /* NUIStyleParser.h */,
89B9402E1671418100850A9A /* NUIStyleParser.m */,
4A77934C1675647900B5EE81 /* NUISwizzler.h */,
4A77934D1675647A00B5EE81 /* NUISwizzler.m */,
89B9402F1671418100850A9A /* NUIUtilities.h */,
89B940301671418100850A9A /* NUIUtilities.m */,
3AE80CFA17E0EB290065FB3D /* NUIConstants.h */,
EAB69CA91885E1AE00358420 /* Parser */,
89B940311671418100850A9A /* Renderers */,
);
path = Core;
sourceTree = "<group>";
};
89B940311671418100850A9A /* Renderers */ = {
isa = PBXGroup;
children = (
7C5A17A61CCE1435001288C5 /* NUIActivityIndicatorRenderer.h */,
7C5A17A71CCE1435001288C5 /* NUIActivityIndicatorRenderer.m */,
DBB82A891C5C2DDF00A483D3 /* NUIPageControlRenderer.h */,
DBB82A8A1C5C2DDF00A483D3 /* NUIPageControlRenderer.m */,
89B940321671418100850A9A /* NUIBarButtonItemRenderer.h */,
89B940331671418100850A9A /* NUIBarButtonItemRenderer.m */,
89B940341671418100850A9A /* NUIButtonRenderer.h */,
89B940351671418100850A9A /* NUIButtonRenderer.m */,
D8E7167F16B8AF4300686854 /* NUIControlRenderer.h */,
D8E7168016B8AF4300686854 /* NUIControlRenderer.m */,
89B940361671418100850A9A /* NUILabelRenderer.h */,
89B940371671418100850A9A /* NUILabelRenderer.m */,
89B940381671418100850A9A /* NUINavigationBarRenderer.h */,
89B940391671418100850A9A /* NUINavigationBarRenderer.m */,
89B9403A1671418100850A9A /* NUINavigationItemRenderer.h */,
89B9403B1671418100850A9A /* NUINavigationItemRenderer.m */,
4A5B5B2716F6471400CF8D16 /* NUIProgressViewRenderer.h */,
4A5B5B2816F6471400CF8D16 /* NUIProgressViewRenderer.m */,
4ADA71C816A103CD00BDCF81 /* NUISearchBarRenderer.h */,
4ADA71C916A103CD00BDCF81 /* NUISearchBarRenderer.m */,
89B9403C1671418100850A9A /* NUISegmentedControlRenderer.h */,
89B9403D1671418100850A9A /* NUISegmentedControlRenderer.m */,
D983DF1D169DC87200A3A180 /* NUISliderRenderer.h */,
D983DF1E169DC87500A3A180 /* NUISliderRenderer.m */,
B51BC28C16972527004A38F8 /* NUISwitchRenderer.h */,
B51BC28D16972527004A38F8 /* NUISwitchRenderer.m */,
4A7793461675625800B5EE81 /* NUITabBarItemRenderer.h */,
4A7793471675625800B5EE81 /* NUITabBarItemRenderer.m */,
89B9403E1671418100850A9A /* NUITabBarRenderer.h */,
89B9403F1671418100850A9A /* NUITabBarRenderer.m */,
E291BBD5179C89470016BC1D /* NUITableViewRenderer.h */,
E291BBD6179C89470016BC1D /* NUITableViewRenderer.m */,
89B940401671418100850A9A /* NUITableViewCellRenderer.h */,
89B940411671418100850A9A /* NUITableViewCellRenderer.m */,
89B940421671418100850A9A /* NUITextFieldRenderer.h */,
89B940431671418100850A9A /* NUITextFieldRenderer.m */,
CB8A030E17CC1F7C0065A7DD /* NUITextViewRenderer.h */,
CB8A030F17CC1F7C0065A7DD /* NUITextViewRenderer.m */,
D983DEE3169DBCCB00A3A180 /* NUIToolbarRenderer.h */,
D983DEE4169DBCCC00A3A180 /* NUIToolbarRenderer.m */,
89B940441671418100850A9A /* NUIViewRenderer.h */,
89B940451671418100850A9A /* NUIViewRenderer.m */,
4A38830F16C7268000DB99C2 /* NUIWindowRenderer.h */,
4A38831016C7268000DB99C2 /* NUIWindowRenderer.m */,
4E860DD61C9642EF006F3B0E /* NUITextInputTraitsRenderer.h */,
4E860DD71C9642EF006F3B0E /* NUITextInputTraitsRenderer.m */,
);
path = Renderers;
sourceTree = "<group>";
};
89B940471671418100850A9A /* Resources */ = {
isa = PBXGroup;
children = (
89B9404A1671418100850A9A /* NUIViewBackground.png */,
);
path = Resources;
sourceTree = "<group>";
};
89B9404F1671418100850A9A /* UI */ = {
isa = PBXGroup;
children = (
7C5A17AC1CCE19BC001288C5 /* UIActivityIndicatorView+NUI.h */,
7C5A17AD1CCE19BC001288C5 /* UIActivityIndicatorView+NUI.m */,
DBB82A8C1C5C2FC900A483D3 /* UIPageControl+NUI.h */,
DBB82A8D1C5C2FC900A483D3 /* UIPageControl+NUI.m */,
4A77934F1675687C00B5EE81 /* UIBarButtonItem+NUI.h */,
4A7793501675687C00B5EE81 /* UIBarButtonItem+NUI.m */,
4A779341167560FF00B5EE81 /* UIButton+NUI.h */,
4A779340167560FF00B5EE81 /* UIButton+NUI.m */,
D8E7168316B9980300686854 /* UIControl+NUI.h */,
D8E7168416B9980300686854 /* UIControl+NUI.m */,
4A55F07A1675718F0056753C /* UILabel+NUI.h */,
4A55F07B1675718F0056753C /* UILabel+NUI.m */,
4A55F07D167573D10056753C /* UINavigationBar+NUI.h */,
4A55F07E167573D10056753C /* UINavigationBar+NUI.m */,
4A55F08016758E4D0056753C /* UINavigationItem+NUI.h */,
4A55F08116758E4D0056753C /* UINavigationItem+NUI.m */,
FC280DB716F127DE00B01664 /* UIProgressView+NUI.h */,
FC280DB816F127DE00B01664 /* UIProgressView+NUI.m */,
4ADA71C416A0F15C00BDCF81 /* UISearchBar+NUI.h */,
4ADA71C516A0F15C00BDCF81 /* UISearchBar+NUI.m */,
4A55F08316758E9D0056753C /* UISegmentedControl+NUI.h */,
4A55F08416758E9D0056753C /* UISegmentedControl+NUI.m */,
D983DF1A169DC84500A3A180 /* UISlider+NUI.h */,
D983DF1B169DC84500A3A180 /* UISlider+NUI.m */,
B51BC288169724A3004A38F8 /* UISwitch+NUI.h */,
B51BC289169724A3004A38F8 /* UISwitch+NUI.m */,
4A7793431675619500B5EE81 /* UITabBar+NUI.h */,
4A7793441675619500B5EE81 /* UITabBar+NUI.m */,
4A7793491675635100B5EE81 /* UITabBarItem+NUI.h */,
4A77934A1675635100B5EE81 /* UITabBarItem+NUI.m */,
E291BBD8179C89710016BC1D /* UITableView+NUI.h */,
E291BBD9179C89710016BC1D /* UITableView+NUI.m */,
4A55F08616758ED90056753C /* UITableViewCell+NUI.h */,
4A55F08716758EDA0056753C /* UITableViewCell+NUI.m */,
4A55F08916758F360056753C /* UITextField+NUI.h */,
4A55F08A16758F360056753C /* UITextField+NUI.m */,
CB8A031117CC1FCB0065A7DD /* UITextView+NUI.h */,
CB8A031217CC1FCB0065A7DD /* UITextView+NUI.m */,
D983DEE6169DC05300A3A180 /* UIToolbar+NUI.h */,
D983DEE7169DC05300A3A180 /* UIToolbar+NUI.m */,
4A55F076167570C10056753C /* UIView+NUI.h */,
4A55F077167570C10056753C /* UIView+NUI.m */,
4A38831316C7269F00DB99C2 /* UIWindow+NUI.h */,
4A38831416C7269F00DB99C2 /* UIWindow+NUI.m */,
);
path = UI;
sourceTree = "<group>";
};
EAB69CA91885E1AE00358420 /* Parser */ = {
isa = PBXGroup;
children = (
EAB69D2F188625E900358420 /* NUIDeclaration.h */,
EAB69D30188625E900358420 /* NUIDeclaration.m */,
EAB69D31188625E900358420 /* NUIDefinition.h */,
EAB69D32188625E900358420 /* NUIDefinition.m */,
EAB69D33188625E900358420 /* NUIParserDelegate.h */,
EAB69D34188625E900358420 /* NUIParserDelegate.m */,
EAB69D35188625E900358420 /* NUIRuleSet.h */,
EAB69D36188625E900358420 /* NUIRuleSet.m */,
EADA4807188DD8FF0060F8BC /* NUIMediaBlock.h */,
EADA4808188DD9080060F8BC /* NUIMediaBlock.m */,
EAB69D37188625E900358420 /* NUISelectorSet.h */,
EAB69D38188625E900358420 /* NUISelectorSet.m */,
EADA480D188F10270060F8BC /* NUIStyleSheetItem.h */,
EADA480E188F10270060F8BC /* NUIStyleSheetItem.m */,
EADA480A188DE0D80060F8BC /* NUIMediaOptionSet.h */,
EADA480B188DE0E00060F8BC /* NUIMediaOptionSet.m */,
EAB69D39188625E900358420 /* NUIStyleSheet.h */,
EAB69D3A188625E900358420 /* NUIStyleSheet.m */,
EAB69D3D188625E900358420 /* NUITokeniserDelegate.h */,
EAB69D3E188625E900358420 /* NUITokeniserDelegate.m */,
EAB69D41188625E900358420 /* NUIVariableToken.h */,
EAB69D42188625E900358420 /* NUIVariableToken.m */,
);
name = Parser;
sourceTree = "<group>";
};
F996B2068B95454E79C3F5AA /* Pods */ = {
isa = PBXGroup;
children = (
80CA9B780E980B9CA99F0367 /* Pods-NUIDemo.debug.xcconfig */,
6327BDA600E6A42FDF1220F4 /* Pods-NUIDemo.release.xcconfig */,
1B8E11A50FE5F75C66ACDBBD /* Pods-NUITests.debug.xcconfig */,
945E0E35381989455733E516 /* Pods-NUITests.release.xcconfig */,
);
name = Pods;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
0E8A86AE18EC07C40027F275 /* NUITests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0E8A86BF18EC07C40027F275 /* Build configuration list for PBXNativeTarget "NUITests" */;
buildPhases = (
D18DC955A3494F55929BE412 /* Check Pods Manifest.lock */,
0E8A86AB18EC07C40027F275 /* Sources */,
0E8A86AC18EC07C40027F275 /* Frameworks */,
0E8A86AD18EC07C40027F275 /* Resources */,
5A93E79F762742CE9B93D7BF /* Copy Pods Resources */,
8EFA500C919C4D6E1A73EED7 /* Embed Pods Frameworks */,
);
buildRules = (
);
dependencies = (
0E8A86BE18EC07C40027F275 /* PBXTargetDependency */,
);
name = NUITests;
productName = NUITests;
productReference = 0E8A86AF18EC07C40027F275 /* NUITests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
4A0B8630165EE59A005B5756 /* NUIDemo */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4A0B864F165EE59A005B5756 /* Build configuration list for PBXNativeTarget "NUIDemo" */;
buildPhases = (
1E8011286D7F4F9493ADE186 /* Check Pods Manifest.lock */,
4A0B862D165EE59A005B5756 /* Sources */,
4A0B862E165EE59A005B5756 /* Frameworks */,
4A0B862F165EE59A005B5756 /* Resources */,
E24C83133215433AAA630B11 /* Copy Pods Resources */,
4ECE07FBDB597D16459C5B41 /* Embed Pods Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = NUIDemo;
productName = NUIDemo;
productReference = 4A0B8631165EE59A005B5756 /* NUIDemo.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
4A0B8628165EE59A005B5756 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0500;
ORGANIZATIONNAME = "Tom Benner";
TargetAttributes = {
0E8A86AE18EC07C40027F275 = {
TestTargetID = 4A0B8630165EE59A005B5756;
};
};
};
buildConfigurationList = 4A0B862B165EE59A005B5756 /* Build configuration list for PBXProject "NUIDemo" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 4A0B8626165EE59A005B5756;
productRefGroup = 4A0B8632165EE59A005B5756 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
4A0B8630165EE59A005B5756 /* NUIDemo */,
0E8A86AE18EC07C40027F275 /* NUITests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
0E8A86AD18EC07C40027F275 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0E3F5E03193C64AD003F6A77 /* shadow_image@2x.png in Resources */,
0E5516101938727100B293B7 /* background_image@2x.png in Resources */,
0E5516121938738C00B293B7 /* background_image.png in Resources */,
0E55162119388C1E00B293B7 /* foreground_image.png in Resources */,
0EE9CA7C191EC96D00C84934 /* TestTheme.NUI.nss in Resources */,
0E8A86B918EC07C40027F275 /* InfoPlist.strings in Resources */,
0E3F5E01193C64AD003F6A77 /* shadow_image.png in Resources */,
0E55162319388C1E00B293B7 /* foreground_image@2x.png in Resources */,
5B5888C31992BD15005F1ACB /* Assets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4A0B862F165EE59A005B5756 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0EE9CA7D191ECA0F00C84934 /* TestTheme.NUI.nss in Resources */,
165D32561BF2239900BF3069 /* Images.xcassets in Resources */,
4A0B8640165EE59A005B5756 /* InfoPlist.strings in Resources */,
4AAAFE7C166FD32600A0D34D /* Default-568h@2x.png in Resources */,
5B5888C41992BD1C005F1ACB /* Assets in Resources */,
89B940811671418200850A9A /* NUIStyle.nss in Resources */,
89B940841671418200850A9A /* NUIViewBackground.png in Resources */,
4A9965E5169FB56800DAA38A /* Blue.NUI.nss in Resources */,
0E5516141938751400B293B7 /* background_image@2x.png in Resources */,
0E3F5E00193C64AD003F6A77 /* shadow_image.png in Resources */,
4A9965E6169FB56800DAA38A /* Default.NUI.nss in Resources */,
0E5516131938751100B293B7 /* background_image.png in Resources */,
4A9965E7169FB56800DAA38A /* Googolplex.NUI.nss in Resources */,
4A9965E8169FB56800DAA38A /* Round.NUI.nss in Resources */,
0E55162219388C1E00B293B7 /* foreground_image@2x.png in Resources */,
4A9965E9169FB56800DAA38A /* Route.NUI.nss in Resources */,
4A9965EA169FB56800DAA38A /* SkyBlue.NUI.nss in Resources */,
4A9965EB169FB56800DAA38A /* Switchboard.NUI.nss in Resources */,
0E3F5E02193C64AD003F6A77 /* shadow_image@2x.png in Resources */,
0E55162019388C1E00B293B7 /* foreground_image.png in Resources */,
832B9C1B176AEADA0054F06E /* iPad Storyboard.storyboard in Resources */,
832B9C1E176AEAED0054F06E /* iPhone Storyboard.storyboard in Resources */,
);