-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1363 lines (1351 loc) · 80.3 KB
/
project.pbxproj
File metadata and controls
1363 lines (1351 loc) · 80.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
46ACF0552490F52600FAAD43 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFD82490F52500FAAD43 /* Color.swift */; };
46ACF0562490F52600FAAD43 /* UIView+Positioning.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFD92490F52500FAAD43 /* UIView+Positioning.swift */; };
46ACF0572490F52600FAAD43 /* StoryboardController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFDC2490F52500FAAD43 /* StoryboardController.swift */; };
46ACF0582490F52600FAAD43 /* XibView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFDE2490F52500FAAD43 /* XibView.swift */; };
46ACF0592490F52600FAAD43 /* DesignButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFE02490F52500FAAD43 /* DesignButton.swift */; };
46ACF05A2490F52600FAAD43 /* DesignView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFE12490F52500FAAD43 /* DesignView.swift */; };
46ACF05B2490F52600FAAD43 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 46ACEFE32490F52500FAAD43 /* Localizable.strings */; };
46ACF05C2490F52600FAAD43 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 46ACEFE52490F52500FAAD43 /* InfoPlist.strings */; };
46ACF05D2490F52600FAAD43 /* LocalizationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFE72490F52500FAAD43 /* LocalizationManager.swift */; };
46ACF05E2490F52600FAAD43 /* LocalizeFuncs.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFEA2490F52500FAAD43 /* LocalizeFuncs.swift */; };
46ACF05F2490F52600FAAD43 /* MapsFavoriteCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFEF2490F52500FAAD43 /* MapsFavoriteCell.swift */; };
46ACF0602490F52600FAAD43 /* MapsFavoriteCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACEFF02490F52500FAAD43 /* MapsFavoriteCell.xib */; };
46ACF0612490F52600FAAD43 /* MapsFavoritesCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACEFF42490F52500FAAD43 /* MapsFavoritesCell.xib */; };
46ACF0622490F52600FAAD43 /* MapsFavoritesCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFF52490F52500FAAD43 /* MapsFavoritesCell.swift */; };
46ACF0632490F52600FAAD43 /* MapsCollectionCellView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFF72490F52500FAAD43 /* MapsCollectionCellView.swift */; };
46ACF0642490F52600FAAD43 /* MapsCollectionsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACEFF82490F52500FAAD43 /* MapsCollectionsCell.xib */; };
46ACF0652490F52600FAAD43 /* MapsCollectionsCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFF92490F52500FAAD43 /* MapsCollectionsCell.swift */; };
46ACF0662490F52600FAAD43 /* MapsLocationCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACEFFB2490F52500FAAD43 /* MapsLocationCell.xib */; };
46ACF0672490F52600FAAD43 /* MapsLocationCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFFC2490F52500FAAD43 /* MapsLocationCell.swift */; };
46ACF0682490F52600FAAD43 /* MapsSectionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACEFFE2490F52500FAAD43 /* MapsSectionCell.xib */; };
46ACF0692490F52600FAAD43 /* MapsSectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACEFFF2490F52500FAAD43 /* MapsSectionCell.swift */; };
46ACF06A2490F52600FAAD43 /* MapsRouteCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0022490F52500FAAD43 /* MapsRouteCell.xib */; };
46ACF06B2490F52600FAAD43 /* MapsRouteCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0032490F52500FAAD43 /* MapsRouteCell.swift */; };
46ACF06C2490F52600FAAD43 /* LocationCoordinateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0062490F52500FAAD43 /* LocationCoordinateCell.xib */; };
46ACF06D2490F52600FAAD43 /* LocationCoordinateCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0072490F52500FAAD43 /* LocationCoordinateCell.swift */; };
46ACF06E2490F52600FAAD43 /* LocationAddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0092490F52500FAAD43 /* LocationAddressCell.swift */; };
46ACF06F2490F52600FAAD43 /* LocationAddressCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF00A2490F52500FAAD43 /* LocationAddressCell.xib */; };
46ACF0702490F52600FAAD43 /* LocationCollectionsButtonCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF00C2490F52500FAAD43 /* LocationCollectionsButtonCell.xib */; };
46ACF0712490F52600FAAD43 /* LocationCollectionsButtonCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF00D2490F52500FAAD43 /* LocationCollectionsButtonCell.swift */; };
46ACF0722490F52600FAAD43 /* LocationButtonCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF00F2490F52500FAAD43 /* LocationButtonCell.xib */; };
46ACF0732490F52600FAAD43 /* LocationButtonCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0102490F52500FAAD43 /* LocationButtonCell.swift */; };
46ACF0742490F52600FAAD43 /* LocationTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0122490F52500FAAD43 /* LocationTextCell.xib */; };
46ACF0752490F52600FAAD43 /* LocationTextCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0132490F52500FAAD43 /* LocationTextCell.swift */; };
46ACF0762490F52600FAAD43 /* MapsSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0162490F52600FAAD43 /* MapsSearchCell.xib */; };
46ACF0772490F52600FAAD43 /* MapsSearchCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0172490F52600FAAD43 /* MapsSearchCell.swift */; };
46ACF0782490F52600FAAD43 /* MapsMenuSpaceCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF01A2490F52600FAAD43 /* MapsMenuSpaceCell.swift */; };
46ACF0792490F52600FAAD43 /* MapsMenuSpaceCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF01B2490F52600FAAD43 /* MapsMenuSpaceCell.xib */; };
46ACF07A2490F52600FAAD43 /* MapsMenuSegmentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF01D2490F52600FAAD43 /* MapsMenuSegmentCell.swift */; };
46ACF07B2490F52600FAAD43 /* MapsMenuSegmentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF01E2490F52600FAAD43 /* MapsMenuSegmentCell.xib */; };
46ACF07C2490F52600FAAD43 /* MapsMenuTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0202490F52600FAAD43 /* MapsMenuTextCell.xib */; };
46ACF07D2490F52600FAAD43 /* MapsMenuTextCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0212490F52600FAAD43 /* MapsMenuTextCell.swift */; };
46ACF07E2490F52600FAAD43 /* HeaderDetailsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0252490F52600FAAD43 /* HeaderDetailsView.swift */; };
46ACF07F2490F52600FAAD43 /* HeaderDetailsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0262490F52600FAAD43 /* HeaderDetailsView.xib */; };
46ACF0802490F52600FAAD43 /* HeaderSearchBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0282490F52600FAAD43 /* HeaderSearchBarView.swift */; };
46ACF0812490F52600FAAD43 /* HeaderSearchBarView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0292490F52600FAAD43 /* HeaderSearchBarView.xib */; };
46ACF0822490F52600FAAD43 /* TableHeaderSpinerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF02C2490F52600FAAD43 /* TableHeaderSpinerView.xib */; };
46ACF0832490F52600FAAD43 /* TableHeaderSpinerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF02D2490F52600FAAD43 /* TableHeaderSpinerView.swift */; };
46ACF0842490F52600FAAD43 /* HeaderTabBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF02F2490F52600FAAD43 /* HeaderTabBarView.swift */; };
46ACF0852490F52600FAAD43 /* HeaderTabBarView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0302490F52600FAAD43 /* HeaderTabBarView.xib */; };
46ACF0862490F52600FAAD43 /* MapsMenuHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0332490F52600FAAD43 /* MapsMenuHeader.swift */; };
46ACF0872490F52600FAAD43 /* MapsMenuHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0342490F52600FAAD43 /* MapsMenuHeader.xib */; };
46ACF0882490F52600FAAD43 /* MapsButtons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0372490F52600FAAD43 /* MapsButtons.swift */; };
46ACF0892490F52600FAAD43 /* MapsButtons.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0382490F52600FAAD43 /* MapsButtons.xib */; };
46ACF08A2490F52600FAAD43 /* MapsWeatherView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF03A2490F52600FAAD43 /* MapsWeatherView.xib */; };
46ACF08B2490F52600FAAD43 /* MapsWeatherView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF03B2490F52600FAAD43 /* MapsWeatherView.swift */; };
46ACF08C2490F52600FAAD43 /* MapsViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF03C2490F52600FAAD43 /* MapsViewController.storyboard */; };
46ACF08D2490F52600FAAD43 /* MapsRouteContainerLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF03F2490F52600FAAD43 /* MapsRouteContainerLayout.swift */; };
46ACF08E2490F52600FAAD43 /* MapsMenuContainerLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0402490F52600FAAD43 /* MapsMenuContainerLayout.swift */; };
46ACF08F2490F52600FAAD43 /* MapsMainContainerLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0412490F52600FAAD43 /* MapsMainContainerLayout.swift */; };
46ACF0902490F52600FAAD43 /* MapsContainerLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0422490F52600FAAD43 /* MapsContainerLayout.swift */; };
46ACF0912490F52600FAAD43 /* MapsContainerControllerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0452490F52600FAAD43 /* MapsContainerControllerDelegate.swift */; };
46ACF0922490F52600FAAD43 /* MapsContainerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0462490F52600FAAD43 /* MapsContainerController.swift */; };
46ACF0932490F52600FAAD43 /* RouteContainerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0482490F52600FAAD43 /* RouteContainerController.swift */; };
46ACF0942490F52600FAAD43 /* RouteContainerControllerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0492490F52600FAAD43 /* RouteContainerControllerDelegate.swift */; };
46ACF0952490F52600FAAD43 /* LocationContainerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF04B2490F52600FAAD43 /* LocationContainerController.swift */; };
46ACF0962490F52600FAAD43 /* LocationContainerControllerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF04C2490F52600FAAD43 /* LocationContainerControllerDelegate.swift */; };
46ACF0972490F52600FAAD43 /* MenuContainerControllerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF04E2490F52600FAAD43 /* MenuContainerControllerDelegate.swift */; };
46ACF0982490F52600FAAD43 /* MenuContainerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF04F2490F52600FAAD43 /* MenuContainerController.swift */; };
46ACF0992490F52600FAAD43 /* MapViewManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0512490F52600FAAD43 /* MapViewManager.swift */; };
46ACF09A2490F52600FAAD43 /* MapsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0522490F52600FAAD43 /* MapsViewController.swift */; };
46ACF09E2490FE2700FAAD43 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF09D2490FE2700FAAD43 /* SceneDelegate.swift */; };
46ACF0C22490FEB300FAAD43 /* ExampleCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0A32490FEB200FAAD43 /* ExampleCollectionCell.swift */; };
46ACF0C32490FEB300FAAD43 /* ExampleCollectionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0A42490FEB200FAAD43 /* ExampleCollectionCell.xib */; };
46ACF0C42490FEB300FAAD43 /* ExampleCellStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0A62490FEB200FAAD43 /* ExampleCellStyle.swift */; };
46ACF0C52490FEB300FAAD43 /* ExampleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0A72490FEB200FAAD43 /* ExampleCell.swift */; };
46ACF0C62490FEB300FAAD43 /* ExampleSegmentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0A92490FEB200FAAD43 /* ExampleSegmentCell.swift */; };
46ACF0C72490FEB300FAAD43 /* ExampleSegmentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0AA2490FEB200FAAD43 /* ExampleSegmentCell.xib */; };
46ACF0C82490FEB300FAAD43 /* ExampleSwitchCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0AC2490FEB200FAAD43 /* ExampleSwitchCell.swift */; };
46ACF0C92490FEB300FAAD43 /* ExampleSwitchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0AD2490FEB200FAAD43 /* ExampleSwitchCell.xib */; };
46ACF0CA2490FEB300FAAD43 /* TitleTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0AF2490FEB200FAAD43 /* TitleTextCell.xib */; };
46ACF0CB2490FEB300FAAD43 /* TitleTextCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0B02490FEB200FAAD43 /* TitleTextCell.swift */; };
46ACF0CC2490FEB300FAAD43 /* ExampleSliderCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0B22490FEB200FAAD43 /* ExampleSliderCell.swift */; };
46ACF0CD2490FEB300FAAD43 /* ExampleSliderCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0B32490FEB200FAAD43 /* ExampleSliderCell.xib */; };
46ACF0CE2490FEB300FAAD43 /* ExampleFooterButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0B62490FEB200FAAD43 /* ExampleFooterButtonView.swift */; };
46ACF0CF2490FEB300FAAD43 /* ExampleFooterButtonView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0B72490FEB300FAAD43 /* ExampleFooterButtonView.xib */; };
46ACF0D02490FEB300FAAD43 /* headerShadow.png in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0B92490FEB300FAAD43 /* headerShadow.png */; };
46ACF0D12490FEB300FAAD43 /* ExampleHeaderGripView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0BA2490FEB300FAAD43 /* ExampleHeaderGripView.swift */; };
46ACF0D22490FEB300FAAD43 /* ExampleHeaderGripView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0BB2490FEB300FAAD43 /* ExampleHeaderGripView.xib */; };
46ACF0D32490FEB300FAAD43 /* ExamplesSettingsViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0BC2490FEB300FAAD43 /* ExamplesSettingsViewController.storyboard */; };
46ACF0D42490FEB300FAAD43 /* ExamplesContainerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0BE2490FEB300FAAD43 /* ExamplesContainerController.swift */; };
46ACF0D52490FEB300FAAD43 /* ExamplesContainerControllerScrollType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0BF2490FEB300FAAD43 /* ExamplesContainerControllerScrollType.swift */; };
46ACF0D62490FEB300FAAD43 /* ExamplesScrollViews.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0C02490FEB300FAAD43 /* ExamplesScrollViews.swift */; };
46ACF0D72490FEB300FAAD43 /* ExamplesSettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0C12490FEB300FAAD43 /* ExamplesSettingsViewController.swift */; };
46ACF0D92491A75300FAAD43 /* screenLandscape5.png in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0D82491A75300FAAD43 /* screenLandscape5.png */; };
46ACF0E3249255ED00FAAD43 /* ExampleAddCollectionViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0E1249255ED00FAAD43 /* ExampleAddCollectionViewController.storyboard */; };
46ACF0E4249255ED00FAAD43 /* ExampleAddCollectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0E2249255ED00FAAD43 /* ExampleAddCollectionViewController.swift */; };
46ACF0E824925B9200FAAD43 /* ExampleAddTableViewControllerSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0E524925B9200FAAD43 /* ExampleAddTableViewControllerSettings.swift */; };
46ACF0E924925B9200FAAD43 /* ExampleAddTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46ACF0E624925B9200FAAD43 /* ExampleAddTableViewController.swift */; };
46ACF0EA24925B9200FAAD43 /* ExampleAddTableViewController.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 46ACF0E724925B9200FAAD43 /* ExampleAddTableViewController.storyboard */; };
607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; };
607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; };
607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; };
607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
968DB7E5EF2DD4AE15D171EB /* Pods_ContainerControllerSwift_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 121FB933CAE3EC5A2A00F4B2 /* Pods_ContainerControllerSwift_Example.framework */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
01C7EF19A8C89AA4D02D74D2 /* Pods-ContainerControllerSwift_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ContainerControllerSwift_Tests.debug.xcconfig"; path = "Target Support Files/Pods-ContainerControllerSwift_Tests/Pods-ContainerControllerSwift_Tests.debug.xcconfig"; sourceTree = "<group>"; };
0AA8BF39B9F182FE833C0178 /* Pods-ContainerControllerSwift_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ContainerControllerSwift_Example.debug.xcconfig"; path = "Target Support Files/Pods-ContainerControllerSwift_Example/Pods-ContainerControllerSwift_Example.debug.xcconfig"; sourceTree = "<group>"; };
1034FE614CC8890CE063531F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
121FB933CAE3EC5A2A00F4B2 /* Pods_ContainerControllerSwift_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ContainerControllerSwift_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
46ACEFD82490F52500FAAD43 /* Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Color.swift; sourceTree = "<group>"; };
46ACEFD92490F52500FAAD43 /* UIView+Positioning.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIView+Positioning.swift"; sourceTree = "<group>"; };
46ACEFDC2490F52500FAAD43 /* StoryboardController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryboardController.swift; sourceTree = "<group>"; };
46ACEFDE2490F52500FAAD43 /* XibView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = XibView.swift; sourceTree = "<group>"; };
46ACEFE02490F52500FAAD43 /* DesignButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DesignButton.swift; sourceTree = "<group>"; };
46ACEFE12490F52500FAAD43 /* DesignView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DesignView.swift; sourceTree = "<group>"; };
46ACEFE42490F52500FAAD43 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
46ACEFE62490F52500FAAD43 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
46ACEFE72490F52500FAAD43 /* LocalizationManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocalizationManager.swift; sourceTree = "<group>"; };
46ACEFE82490F52500FAAD43 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
46ACEFE92490F52500FAAD43 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = "<group>"; };
46ACEFEA2490F52500FAAD43 /* LocalizeFuncs.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocalizeFuncs.swift; sourceTree = "<group>"; };
46ACEFEF2490F52500FAAD43 /* MapsFavoriteCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsFavoriteCell.swift; sourceTree = "<group>"; };
46ACEFF02490F52500FAAD43 /* MapsFavoriteCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsFavoriteCell.xib; sourceTree = "<group>"; };
46ACEFF42490F52500FAAD43 /* MapsFavoritesCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsFavoritesCell.xib; sourceTree = "<group>"; };
46ACEFF52490F52500FAAD43 /* MapsFavoritesCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsFavoritesCell.swift; sourceTree = "<group>"; };
46ACEFF72490F52500FAAD43 /* MapsCollectionCellView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsCollectionCellView.swift; sourceTree = "<group>"; };
46ACEFF82490F52500FAAD43 /* MapsCollectionsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsCollectionsCell.xib; sourceTree = "<group>"; };
46ACEFF92490F52500FAAD43 /* MapsCollectionsCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsCollectionsCell.swift; sourceTree = "<group>"; };
46ACEFFB2490F52500FAAD43 /* MapsLocationCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsLocationCell.xib; sourceTree = "<group>"; };
46ACEFFC2490F52500FAAD43 /* MapsLocationCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsLocationCell.swift; sourceTree = "<group>"; };
46ACEFFE2490F52500FAAD43 /* MapsSectionCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsSectionCell.xib; sourceTree = "<group>"; };
46ACEFFF2490F52500FAAD43 /* MapsSectionCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsSectionCell.swift; sourceTree = "<group>"; };
46ACF0022490F52500FAAD43 /* MapsRouteCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsRouteCell.xib; sourceTree = "<group>"; };
46ACF0032490F52500FAAD43 /* MapsRouteCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsRouteCell.swift; sourceTree = "<group>"; };
46ACF0062490F52500FAAD43 /* LocationCoordinateCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LocationCoordinateCell.xib; sourceTree = "<group>"; };
46ACF0072490F52500FAAD43 /* LocationCoordinateCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationCoordinateCell.swift; sourceTree = "<group>"; };
46ACF0092490F52500FAAD43 /* LocationAddressCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationAddressCell.swift; sourceTree = "<group>"; };
46ACF00A2490F52500FAAD43 /* LocationAddressCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LocationAddressCell.xib; sourceTree = "<group>"; };
46ACF00C2490F52500FAAD43 /* LocationCollectionsButtonCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LocationCollectionsButtonCell.xib; sourceTree = "<group>"; };
46ACF00D2490F52500FAAD43 /* LocationCollectionsButtonCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationCollectionsButtonCell.swift; sourceTree = "<group>"; };
46ACF00F2490F52500FAAD43 /* LocationButtonCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LocationButtonCell.xib; sourceTree = "<group>"; };
46ACF0102490F52500FAAD43 /* LocationButtonCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationButtonCell.swift; sourceTree = "<group>"; };
46ACF0122490F52500FAAD43 /* LocationTextCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LocationTextCell.xib; sourceTree = "<group>"; };
46ACF0132490F52500FAAD43 /* LocationTextCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationTextCell.swift; sourceTree = "<group>"; };
46ACF0162490F52600FAAD43 /* MapsSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsSearchCell.xib; sourceTree = "<group>"; };
46ACF0172490F52600FAAD43 /* MapsSearchCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsSearchCell.swift; sourceTree = "<group>"; };
46ACF01A2490F52600FAAD43 /* MapsMenuSpaceCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsMenuSpaceCell.swift; sourceTree = "<group>"; };
46ACF01B2490F52600FAAD43 /* MapsMenuSpaceCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsMenuSpaceCell.xib; sourceTree = "<group>"; };
46ACF01D2490F52600FAAD43 /* MapsMenuSegmentCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsMenuSegmentCell.swift; sourceTree = "<group>"; };
46ACF01E2490F52600FAAD43 /* MapsMenuSegmentCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsMenuSegmentCell.xib; sourceTree = "<group>"; };
46ACF0202490F52600FAAD43 /* MapsMenuTextCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsMenuTextCell.xib; sourceTree = "<group>"; };
46ACF0212490F52600FAAD43 /* MapsMenuTextCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsMenuTextCell.swift; sourceTree = "<group>"; };
46ACF0252490F52600FAAD43 /* HeaderDetailsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeaderDetailsView.swift; sourceTree = "<group>"; };
46ACF0262490F52600FAAD43 /* HeaderDetailsView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HeaderDetailsView.xib; sourceTree = "<group>"; };
46ACF0282490F52600FAAD43 /* HeaderSearchBarView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeaderSearchBarView.swift; sourceTree = "<group>"; };
46ACF0292490F52600FAAD43 /* HeaderSearchBarView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HeaderSearchBarView.xib; sourceTree = "<group>"; };
46ACF02C2490F52600FAAD43 /* TableHeaderSpinerView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TableHeaderSpinerView.xib; sourceTree = "<group>"; };
46ACF02D2490F52600FAAD43 /* TableHeaderSpinerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TableHeaderSpinerView.swift; sourceTree = "<group>"; };
46ACF02F2490F52600FAAD43 /* HeaderTabBarView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HeaderTabBarView.swift; sourceTree = "<group>"; };
46ACF0302490F52600FAAD43 /* HeaderTabBarView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HeaderTabBarView.xib; sourceTree = "<group>"; };
46ACF0332490F52600FAAD43 /* MapsMenuHeader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsMenuHeader.swift; sourceTree = "<group>"; };
46ACF0342490F52600FAAD43 /* MapsMenuHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsMenuHeader.xib; sourceTree = "<group>"; };
46ACF0372490F52600FAAD43 /* MapsButtons.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsButtons.swift; sourceTree = "<group>"; };
46ACF0382490F52600FAAD43 /* MapsButtons.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsButtons.xib; sourceTree = "<group>"; };
46ACF03A2490F52600FAAD43 /* MapsWeatherView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MapsWeatherView.xib; sourceTree = "<group>"; };
46ACF03B2490F52600FAAD43 /* MapsWeatherView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsWeatherView.swift; sourceTree = "<group>"; };
46ACF03C2490F52600FAAD43 /* MapsViewController.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = MapsViewController.storyboard; sourceTree = "<group>"; };
46ACF03F2490F52600FAAD43 /* MapsRouteContainerLayout.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsRouteContainerLayout.swift; sourceTree = "<group>"; };
46ACF0402490F52600FAAD43 /* MapsMenuContainerLayout.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsMenuContainerLayout.swift; sourceTree = "<group>"; };
46ACF0412490F52600FAAD43 /* MapsMainContainerLayout.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsMainContainerLayout.swift; sourceTree = "<group>"; };
46ACF0422490F52600FAAD43 /* MapsContainerLayout.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsContainerLayout.swift; sourceTree = "<group>"; };
46ACF0452490F52600FAAD43 /* MapsContainerControllerDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsContainerControllerDelegate.swift; sourceTree = "<group>"; };
46ACF0462490F52600FAAD43 /* MapsContainerController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsContainerController.swift; sourceTree = "<group>"; };
46ACF0482490F52600FAAD43 /* RouteContainerController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RouteContainerController.swift; sourceTree = "<group>"; };
46ACF0492490F52600FAAD43 /* RouteContainerControllerDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RouteContainerControllerDelegate.swift; sourceTree = "<group>"; };
46ACF04B2490F52600FAAD43 /* LocationContainerController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationContainerController.swift; sourceTree = "<group>"; };
46ACF04C2490F52600FAAD43 /* LocationContainerControllerDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationContainerControllerDelegate.swift; sourceTree = "<group>"; };
46ACF04E2490F52600FAAD43 /* MenuContainerControllerDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MenuContainerControllerDelegate.swift; sourceTree = "<group>"; };
46ACF04F2490F52600FAAD43 /* MenuContainerController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MenuContainerController.swift; sourceTree = "<group>"; };
46ACF0512490F52600FAAD43 /* MapViewManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapViewManager.swift; sourceTree = "<group>"; };
46ACF0522490F52600FAAD43 /* MapsViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MapsViewController.swift; sourceTree = "<group>"; };
46ACF09D2490FE2700FAAD43 /* SceneDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
46ACF0A32490FEB200FAAD43 /* ExampleCollectionCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleCollectionCell.swift; sourceTree = "<group>"; };
46ACF0A42490FEB200FAAD43 /* ExampleCollectionCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ExampleCollectionCell.xib; sourceTree = "<group>"; };
46ACF0A62490FEB200FAAD43 /* ExampleCellStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleCellStyle.swift; sourceTree = "<group>"; };
46ACF0A72490FEB200FAAD43 /* ExampleCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleCell.swift; sourceTree = "<group>"; };
46ACF0A92490FEB200FAAD43 /* ExampleSegmentCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleSegmentCell.swift; sourceTree = "<group>"; };
46ACF0AA2490FEB200FAAD43 /* ExampleSegmentCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ExampleSegmentCell.xib; sourceTree = "<group>"; };
46ACF0AC2490FEB200FAAD43 /* ExampleSwitchCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleSwitchCell.swift; sourceTree = "<group>"; };
46ACF0AD2490FEB200FAAD43 /* ExampleSwitchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ExampleSwitchCell.xib; sourceTree = "<group>"; };
46ACF0AF2490FEB200FAAD43 /* TitleTextCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TitleTextCell.xib; sourceTree = "<group>"; };
46ACF0B02490FEB200FAAD43 /* TitleTextCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TitleTextCell.swift; sourceTree = "<group>"; };
46ACF0B22490FEB200FAAD43 /* ExampleSliderCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleSliderCell.swift; sourceTree = "<group>"; };
46ACF0B32490FEB200FAAD43 /* ExampleSliderCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ExampleSliderCell.xib; sourceTree = "<group>"; };
46ACF0B62490FEB200FAAD43 /* ExampleFooterButtonView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleFooterButtonView.swift; sourceTree = "<group>"; };
46ACF0B72490FEB300FAAD43 /* ExampleFooterButtonView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ExampleFooterButtonView.xib; sourceTree = "<group>"; };
46ACF0B92490FEB300FAAD43 /* headerShadow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = headerShadow.png; sourceTree = "<group>"; };
46ACF0BA2490FEB300FAAD43 /* ExampleHeaderGripView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleHeaderGripView.swift; sourceTree = "<group>"; };
46ACF0BB2490FEB300FAAD43 /* ExampleHeaderGripView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ExampleHeaderGripView.xib; sourceTree = "<group>"; };
46ACF0BC2490FEB300FAAD43 /* ExamplesSettingsViewController.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = ExamplesSettingsViewController.storyboard; sourceTree = "<group>"; };
46ACF0BE2490FEB300FAAD43 /* ExamplesContainerController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExamplesContainerController.swift; sourceTree = "<group>"; };
46ACF0BF2490FEB300FAAD43 /* ExamplesContainerControllerScrollType.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExamplesContainerControllerScrollType.swift; sourceTree = "<group>"; };
46ACF0C02490FEB300FAAD43 /* ExamplesScrollViews.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExamplesScrollViews.swift; sourceTree = "<group>"; };
46ACF0C12490FEB300FAAD43 /* ExamplesSettingsViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExamplesSettingsViewController.swift; sourceTree = "<group>"; };
46ACF0D82491A75300FAAD43 /* screenLandscape5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = screenLandscape5.png; sourceTree = "<group>"; };
46ACF0E1249255ED00FAAD43 /* ExampleAddCollectionViewController.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = ExampleAddCollectionViewController.storyboard; sourceTree = "<group>"; };
46ACF0E2249255ED00FAAD43 /* ExampleAddCollectionViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleAddCollectionViewController.swift; sourceTree = "<group>"; };
46ACF0E524925B9200FAAD43 /* ExampleAddTableViewControllerSettings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleAddTableViewControllerSettings.swift; sourceTree = "<group>"; };
46ACF0E624925B9200FAAD43 /* ExampleAddTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleAddTableViewController.swift; sourceTree = "<group>"; };
46ACF0E724925B9200FAAD43 /* ExampleAddTableViewController.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = ExampleAddTableViewController.storyboard; sourceTree = "<group>"; };
607FACD01AFB9204008FA782 /* ContainerController.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ContainerController.app; sourceTree = BUILT_PRODUCTS_DIR; };
607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
84550121AB9630F101ECE515 /* Pods-ContainerControllerSwift_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ContainerControllerSwift_Example.release.xcconfig"; path = "Target Support Files/Pods-ContainerControllerSwift_Example/Pods-ContainerControllerSwift_Example.release.xcconfig"; sourceTree = "<group>"; };
95BE06AF27887E1C134436AD /* ContainerControllerSwift.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ContainerControllerSwift.podspec; path = ../ContainerControllerSwift.podspec; sourceTree = "<group>"; };
D8903A29B31F63B5A7A8607B /* Pods_ContainerControllerSwift_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ContainerControllerSwift_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DF5E269035BE15FBD5F947F3 /* Pods-ContainerControllerSwift_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ContainerControllerSwift_Tests.release.xcconfig"; path = "Target Support Files/Pods-ContainerControllerSwift_Tests/Pods-ContainerControllerSwift_Tests.release.xcconfig"; sourceTree = "<group>"; };
E0FB46D7C5BC0F8759A83A60 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
607FACCD1AFB9204008FA782 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
968DB7E5EF2DD4AE15D171EB /* Pods_ContainerControllerSwift_Example.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
22F538CF8601A849D034CF8B /* Pods */ = {
isa = PBXGroup;
children = (
0AA8BF39B9F182FE833C0178 /* Pods-ContainerControllerSwift_Example.debug.xcconfig */,
84550121AB9630F101ECE515 /* Pods-ContainerControllerSwift_Example.release.xcconfig */,
01C7EF19A8C89AA4D02D74D2 /* Pods-ContainerControllerSwift_Tests.debug.xcconfig */,
DF5E269035BE15FBD5F947F3 /* Pods-ContainerControllerSwift_Tests.release.xcconfig */,
);
path = Pods;
sourceTree = "<group>";
};
46ACEFD32490F52500FAAD43 /* ExamplesAddTableView */ = {
isa = PBXGroup;
children = (
46ACF0E624925B9200FAAD43 /* ExampleAddTableViewController.swift */,
46ACF0E524925B9200FAAD43 /* ExampleAddTableViewControllerSettings.swift */,
46ACF0E724925B9200FAAD43 /* ExampleAddTableViewController.storyboard */,
);
path = ExamplesAddTableView;
sourceTree = "<group>";
};
46ACEFD62490F52500FAAD43 /* Framework */ = {
isa = PBXGroup;
children = (
46ACEFD72490F52500FAAD43 /* Utils */,
46ACEFDA2490F52500FAAD43 /* LoadNib */,
46ACEFDF2490F52500FAAD43 /* DesignableViews */,
);
path = Framework;
sourceTree = "<group>";
};
46ACEFD72490F52500FAAD43 /* Utils */ = {
isa = PBXGroup;
children = (
46ACEFD82490F52500FAAD43 /* Color.swift */,
46ACEFD92490F52500FAAD43 /* UIView+Positioning.swift */,
);
path = Utils;
sourceTree = "<group>";
};
46ACEFDA2490F52500FAAD43 /* LoadNib */ = {
isa = PBXGroup;
children = (
46ACEFDC2490F52500FAAD43 /* StoryboardController.swift */,
46ACEFDE2490F52500FAAD43 /* XibView.swift */,
);
path = LoadNib;
sourceTree = "<group>";
};
46ACEFDF2490F52500FAAD43 /* DesignableViews */ = {
isa = PBXGroup;
children = (
46ACEFE02490F52500FAAD43 /* DesignButton.swift */,
46ACEFE12490F52500FAAD43 /* DesignView.swift */,
);
path = DesignableViews;
sourceTree = "<group>";
};
46ACEFE22490F52500FAAD43 /* Localization */ = {
isa = PBXGroup;
children = (
46ACEFE32490F52500FAAD43 /* Localizable.strings */,
46ACEFE52490F52500FAAD43 /* InfoPlist.strings */,
46ACEFE72490F52500FAAD43 /* LocalizationManager.swift */,
46ACEFEA2490F52500FAAD43 /* LocalizeFuncs.swift */,
);
path = Localization;
sourceTree = "<group>";
};
46ACEFEB2490F52500FAAD43 /* Maps */ = {
isa = PBXGroup;
children = (
46ACEFEC2490F52500FAAD43 /* UI */,
46ACF03D2490F52600FAAD43 /* Container */,
46ACF0502490F52600FAAD43 /* MapManager */,
46ACF0522490F52600FAAD43 /* MapsViewController.swift */,
46ACF03C2490F52600FAAD43 /* MapsViewController.storyboard */,
);
path = Maps;
sourceTree = "<group>";
};
46ACEFEC2490F52500FAAD43 /* UI */ = {
isa = PBXGroup;
children = (
46ACEFED2490F52500FAAD43 /* CollectionCell */,
46ACEFF12490F52500FAAD43 /* Cell */,
46ACF0222490F52600FAAD43 /* View */,
);
path = UI;
sourceTree = "<group>";
};
46ACEFED2490F52500FAAD43 /* CollectionCell */ = {
isa = PBXGroup;
children = (
46ACEFEE2490F52500FAAD43 /* MapsFavoriteCell */,
);
path = CollectionCell;
sourceTree = "<group>";
};
46ACEFEE2490F52500FAAD43 /* MapsFavoriteCell */ = {
isa = PBXGroup;
children = (
46ACEFEF2490F52500FAAD43 /* MapsFavoriteCell.swift */,
46ACEFF02490F52500FAAD43 /* MapsFavoriteCell.xib */,
);
path = MapsFavoriteCell;
sourceTree = "<group>";
};
46ACEFF12490F52500FAAD43 /* Cell */ = {
isa = PBXGroup;
children = (
46ACEFF22490F52500FAAD43 /* Maps */,
46ACF0002490F52500FAAD43 /* Route */,
46ACF0042490F52500FAAD43 /* LocationDetails */,
46ACF0142490F52500FAAD43 /* Search */,
46ACF0182490F52600FAAD43 /* Menu */,
);
path = Cell;
sourceTree = "<group>";
};
46ACEFF22490F52500FAAD43 /* Maps */ = {
isa = PBXGroup;
children = (
46ACEFF32490F52500FAAD43 /* MapsFavoritesCell */,
46ACEFF62490F52500FAAD43 /* MapsCollectionsCell */,
46ACEFFA2490F52500FAAD43 /* MapsLocationCell */,
46ACEFFD2490F52500FAAD43 /* MapsSectionCell */,
);
path = Maps;
sourceTree = "<group>";
};
46ACEFF32490F52500FAAD43 /* MapsFavoritesCell */ = {
isa = PBXGroup;
children = (
46ACEFF52490F52500FAAD43 /* MapsFavoritesCell.swift */,
46ACEFF42490F52500FAAD43 /* MapsFavoritesCell.xib */,
);
path = MapsFavoritesCell;
sourceTree = "<group>";
};
46ACEFF62490F52500FAAD43 /* MapsCollectionsCell */ = {
isa = PBXGroup;
children = (
46ACEFF72490F52500FAAD43 /* MapsCollectionCellView.swift */,
46ACEFF92490F52500FAAD43 /* MapsCollectionsCell.swift */,
46ACEFF82490F52500FAAD43 /* MapsCollectionsCell.xib */,
);
path = MapsCollectionsCell;
sourceTree = "<group>";
};
46ACEFFA2490F52500FAAD43 /* MapsLocationCell */ = {
isa = PBXGroup;
children = (
46ACEFFC2490F52500FAAD43 /* MapsLocationCell.swift */,
46ACEFFB2490F52500FAAD43 /* MapsLocationCell.xib */,
);
path = MapsLocationCell;
sourceTree = "<group>";
};
46ACEFFD2490F52500FAAD43 /* MapsSectionCell */ = {
isa = PBXGroup;
children = (
46ACEFFF2490F52500FAAD43 /* MapsSectionCell.swift */,
46ACEFFE2490F52500FAAD43 /* MapsSectionCell.xib */,
);
path = MapsSectionCell;
sourceTree = "<group>";
};
46ACF0002490F52500FAAD43 /* Route */ = {
isa = PBXGroup;
children = (
46ACF0012490F52500FAAD43 /* MapsRouteCell */,
);
path = Route;
sourceTree = "<group>";
};
46ACF0012490F52500FAAD43 /* MapsRouteCell */ = {
isa = PBXGroup;
children = (
46ACF0032490F52500FAAD43 /* MapsRouteCell.swift */,
46ACF0022490F52500FAAD43 /* MapsRouteCell.xib */,
);
path = MapsRouteCell;
sourceTree = "<group>";
};
46ACF0042490F52500FAAD43 /* LocationDetails */ = {
isa = PBXGroup;
children = (
46ACF0052490F52500FAAD43 /* LocationCoordinateCell */,
46ACF0082490F52500FAAD43 /* LocationAddressCell */,
46ACF00B2490F52500FAAD43 /* LocationCollectionsButtonCell */,
46ACF00E2490F52500FAAD43 /* LocationButtonCell */,
46ACF0112490F52500FAAD43 /* LocationTextCell */,
);
path = LocationDetails;
sourceTree = "<group>";
};
46ACF0052490F52500FAAD43 /* LocationCoordinateCell */ = {
isa = PBXGroup;
children = (
46ACF0072490F52500FAAD43 /* LocationCoordinateCell.swift */,
46ACF0062490F52500FAAD43 /* LocationCoordinateCell.xib */,
);
path = LocationCoordinateCell;
sourceTree = "<group>";
};
46ACF0082490F52500FAAD43 /* LocationAddressCell */ = {
isa = PBXGroup;
children = (
46ACF0092490F52500FAAD43 /* LocationAddressCell.swift */,
46ACF00A2490F52500FAAD43 /* LocationAddressCell.xib */,
);
path = LocationAddressCell;
sourceTree = "<group>";
};
46ACF00B2490F52500FAAD43 /* LocationCollectionsButtonCell */ = {
isa = PBXGroup;
children = (
46ACF00D2490F52500FAAD43 /* LocationCollectionsButtonCell.swift */,
46ACF00C2490F52500FAAD43 /* LocationCollectionsButtonCell.xib */,
);
path = LocationCollectionsButtonCell;
sourceTree = "<group>";
};
46ACF00E2490F52500FAAD43 /* LocationButtonCell */ = {
isa = PBXGroup;
children = (
46ACF0102490F52500FAAD43 /* LocationButtonCell.swift */,
46ACF00F2490F52500FAAD43 /* LocationButtonCell.xib */,
);
path = LocationButtonCell;
sourceTree = "<group>";
};
46ACF0112490F52500FAAD43 /* LocationTextCell */ = {
isa = PBXGroup;
children = (
46ACF0132490F52500FAAD43 /* LocationTextCell.swift */,
46ACF0122490F52500FAAD43 /* LocationTextCell.xib */,
);
path = LocationTextCell;
sourceTree = "<group>";
};
46ACF0142490F52500FAAD43 /* Search */ = {
isa = PBXGroup;
children = (
46ACF0152490F52600FAAD43 /* MapsSearchCell */,
);
path = Search;
sourceTree = "<group>";
};
46ACF0152490F52600FAAD43 /* MapsSearchCell */ = {
isa = PBXGroup;
children = (
46ACF0172490F52600FAAD43 /* MapsSearchCell.swift */,
46ACF0162490F52600FAAD43 /* MapsSearchCell.xib */,
);
path = MapsSearchCell;
sourceTree = "<group>";
};
46ACF0182490F52600FAAD43 /* Menu */ = {
isa = PBXGroup;
children = (
46ACF0192490F52600FAAD43 /* MapsMenuSpaceCell */,
46ACF01C2490F52600FAAD43 /* MapsMenuSegmentCell */,
46ACF01F2490F52600FAAD43 /* MapsMenuTextCell */,
);
path = Menu;
sourceTree = "<group>";
};
46ACF0192490F52600FAAD43 /* MapsMenuSpaceCell */ = {
isa = PBXGroup;
children = (
46ACF01A2490F52600FAAD43 /* MapsMenuSpaceCell.swift */,
46ACF01B2490F52600FAAD43 /* MapsMenuSpaceCell.xib */,
);
path = MapsMenuSpaceCell;
sourceTree = "<group>";
};
46ACF01C2490F52600FAAD43 /* MapsMenuSegmentCell */ = {
isa = PBXGroup;
children = (
46ACF01D2490F52600FAAD43 /* MapsMenuSegmentCell.swift */,
46ACF01E2490F52600FAAD43 /* MapsMenuSegmentCell.xib */,
);
path = MapsMenuSegmentCell;
sourceTree = "<group>";
};
46ACF01F2490F52600FAAD43 /* MapsMenuTextCell */ = {
isa = PBXGroup;
children = (
46ACF0212490F52600FAAD43 /* MapsMenuTextCell.swift */,
46ACF0202490F52600FAAD43 /* MapsMenuTextCell.xib */,
);
path = MapsMenuTextCell;
sourceTree = "<group>";
};
46ACF0222490F52600FAAD43 /* View */ = {
isa = PBXGroup;
children = (
46ACF0232490F52600FAAD43 /* Maps */,
46ACF02A2490F52600FAAD43 /* Route */,
46ACF0312490F52600FAAD43 /* Menu */,
46ACF0352490F52600FAAD43 /* Main */,
);
path = View;
sourceTree = "<group>";
};
46ACF0232490F52600FAAD43 /* Maps */ = {
isa = PBXGroup;
children = (
46ACF0242490F52600FAAD43 /* HeaderDetailsView */,
46ACF0272490F52600FAAD43 /* HeaderSearchBarView */,
);
path = Maps;
sourceTree = "<group>";
};
46ACF0242490F52600FAAD43 /* HeaderDetailsView */ = {
isa = PBXGroup;
children = (
46ACF0252490F52600FAAD43 /* HeaderDetailsView.swift */,
46ACF0262490F52600FAAD43 /* HeaderDetailsView.xib */,
);
path = HeaderDetailsView;
sourceTree = "<group>";
};
46ACF0272490F52600FAAD43 /* HeaderSearchBarView */ = {
isa = PBXGroup;
children = (
46ACF0282490F52600FAAD43 /* HeaderSearchBarView.swift */,
46ACF0292490F52600FAAD43 /* HeaderSearchBarView.xib */,
);
path = HeaderSearchBarView;
sourceTree = "<group>";
};
46ACF02A2490F52600FAAD43 /* Route */ = {
isa = PBXGroup;
children = (
46ACF02B2490F52600FAAD43 /* TableHeaderSpinerView */,
46ACF02E2490F52600FAAD43 /* HeaderTabBarView */,
);
path = Route;
sourceTree = "<group>";
};
46ACF02B2490F52600FAAD43 /* TableHeaderSpinerView */ = {
isa = PBXGroup;
children = (
46ACF02D2490F52600FAAD43 /* TableHeaderSpinerView.swift */,
46ACF02C2490F52600FAAD43 /* TableHeaderSpinerView.xib */,
);
path = TableHeaderSpinerView;
sourceTree = "<group>";
};
46ACF02E2490F52600FAAD43 /* HeaderTabBarView */ = {
isa = PBXGroup;
children = (
46ACF02F2490F52600FAAD43 /* HeaderTabBarView.swift */,
46ACF0302490F52600FAAD43 /* HeaderTabBarView.xib */,
);
path = HeaderTabBarView;
sourceTree = "<group>";
};
46ACF0312490F52600FAAD43 /* Menu */ = {
isa = PBXGroup;
children = (
46ACF0322490F52600FAAD43 /* MapsMenuHeader */,
);
path = Menu;
sourceTree = "<group>";
};
46ACF0322490F52600FAAD43 /* MapsMenuHeader */ = {
isa = PBXGroup;
children = (
46ACF0332490F52600FAAD43 /* MapsMenuHeader.swift */,
46ACF0342490F52600FAAD43 /* MapsMenuHeader.xib */,
);
path = MapsMenuHeader;
sourceTree = "<group>";
};
46ACF0352490F52600FAAD43 /* Main */ = {
isa = PBXGroup;
children = (
46ACF0362490F52600FAAD43 /* MapsButtons */,
46ACF0392490F52600FAAD43 /* MapsWeatherView */,
);
path = Main;
sourceTree = "<group>";
};
46ACF0362490F52600FAAD43 /* MapsButtons */ = {
isa = PBXGroup;
children = (
46ACF0372490F52600FAAD43 /* MapsButtons.swift */,
46ACF0382490F52600FAAD43 /* MapsButtons.xib */,
);
path = MapsButtons;
sourceTree = "<group>";
};
46ACF0392490F52600FAAD43 /* MapsWeatherView */ = {
isa = PBXGroup;
children = (
46ACF03B2490F52600FAAD43 /* MapsWeatherView.swift */,
46ACF03A2490F52600FAAD43 /* MapsWeatherView.xib */,
);
path = MapsWeatherView;
sourceTree = "<group>";
};
46ACF03D2490F52600FAAD43 /* Container */ = {
isa = PBXGroup;
children = (
46ACF03E2490F52600FAAD43 /* Layout */,
46ACF0432490F52600FAAD43 /* Controller */,
);
path = Container;
sourceTree = "<group>";
};
46ACF03E2490F52600FAAD43 /* Layout */ = {
isa = PBXGroup;
children = (
46ACF03F2490F52600FAAD43 /* MapsRouteContainerLayout.swift */,
46ACF0402490F52600FAAD43 /* MapsMenuContainerLayout.swift */,
46ACF0412490F52600FAAD43 /* MapsMainContainerLayout.swift */,
46ACF0422490F52600FAAD43 /* MapsContainerLayout.swift */,
);
path = Layout;
sourceTree = "<group>";
};
46ACF0432490F52600FAAD43 /* Controller */ = {
isa = PBXGroup;
children = (
46ACF0442490F52600FAAD43 /* Maps */,
46ACF0472490F52600FAAD43 /* Route */,
46ACF04A2490F52600FAAD43 /* LocationDetails */,
46ACF04D2490F52600FAAD43 /* Menu */,
);
path = Controller;
sourceTree = "<group>";
};
46ACF0442490F52600FAAD43 /* Maps */ = {
isa = PBXGroup;
children = (
46ACF0452490F52600FAAD43 /* MapsContainerControllerDelegate.swift */,
46ACF0462490F52600FAAD43 /* MapsContainerController.swift */,
);
path = Maps;
sourceTree = "<group>";
};
46ACF0472490F52600FAAD43 /* Route */ = {
isa = PBXGroup;
children = (
46ACF0482490F52600FAAD43 /* RouteContainerController.swift */,
46ACF0492490F52600FAAD43 /* RouteContainerControllerDelegate.swift */,
);
path = Route;
sourceTree = "<group>";
};
46ACF04A2490F52600FAAD43 /* LocationDetails */ = {
isa = PBXGroup;
children = (
46ACF04B2490F52600FAAD43 /* LocationContainerController.swift */,
46ACF04C2490F52600FAAD43 /* LocationContainerControllerDelegate.swift */,
);
path = LocationDetails;
sourceTree = "<group>";
};
46ACF04D2490F52600FAAD43 /* Menu */ = {
isa = PBXGroup;
children = (
46ACF04E2490F52600FAAD43 /* MenuContainerControllerDelegate.swift */,
46ACF04F2490F52600FAAD43 /* MenuContainerController.swift */,
);
path = Menu;
sourceTree = "<group>";
};
46ACF0502490F52600FAAD43 /* MapManager */ = {
isa = PBXGroup;
children = (
46ACF0512490F52600FAAD43 /* MapViewManager.swift */,
);
path = MapManager;
sourceTree = "<group>";
};
46ACF09F2490FEB200FAAD43 /* ExamplesSettings */ = {
isa = PBXGroup;
children = (
46ACF0A02490FEB200FAAD43 /* UI */,
46ACF0BD2490FEB300FAAD43 /* Container */,
46ACF0C12490FEB300FAAD43 /* ExamplesSettingsViewController.swift */,
46ACF0BC2490FEB300FAAD43 /* ExamplesSettingsViewController.storyboard */,
);
path = ExamplesSettings;
sourceTree = "<group>";
};
46ACF0A02490FEB200FAAD43 /* UI */ = {
isa = PBXGroup;
children = (
46ACF0A12490FEB200FAAD43 /* CollectionCell */,
46ACF0A52490FEB200FAAD43 /* Cell */,
46ACF0B42490FEB200FAAD43 /* View */,
);
path = UI;
sourceTree = "<group>";
};
46ACF0A12490FEB200FAAD43 /* CollectionCell */ = {
isa = PBXGroup;
children = (
46ACF0A22490FEB200FAAD43 /* ExampleCollectionCell */,
);
path = CollectionCell;
sourceTree = "<group>";
};
46ACF0A22490FEB200FAAD43 /* ExampleCollectionCell */ = {
isa = PBXGroup;
children = (
46ACF0A32490FEB200FAAD43 /* ExampleCollectionCell.swift */,
46ACF0A42490FEB200FAAD43 /* ExampleCollectionCell.xib */,
);
path = ExampleCollectionCell;
sourceTree = "<group>";
};
46ACF0A52490FEB200FAAD43 /* Cell */ = {
isa = PBXGroup;
children = (
46ACF0A62490FEB200FAAD43 /* ExampleCellStyle.swift */,
46ACF0A72490FEB200FAAD43 /* ExampleCell.swift */,
46ACF0A82490FEB200FAAD43 /* ExampleSegmentCell */,
46ACF0AB2490FEB200FAAD43 /* ExampleSwitchCell */,
46ACF0AE2490FEB200FAAD43 /* TitleTextCell */,
46ACF0B12490FEB200FAAD43 /* ExampleSliderCell */,
);
path = Cell;
sourceTree = "<group>";
};
46ACF0A82490FEB200FAAD43 /* ExampleSegmentCell */ = {
isa = PBXGroup;
children = (
46ACF0A92490FEB200FAAD43 /* ExampleSegmentCell.swift */,
46ACF0AA2490FEB200FAAD43 /* ExampleSegmentCell.xib */,
);
path = ExampleSegmentCell;
sourceTree = "<group>";
};
46ACF0AB2490FEB200FAAD43 /* ExampleSwitchCell */ = {
isa = PBXGroup;
children = (
46ACF0AC2490FEB200FAAD43 /* ExampleSwitchCell.swift */,
46ACF0AD2490FEB200FAAD43 /* ExampleSwitchCell.xib */,
);
path = ExampleSwitchCell;
sourceTree = "<group>";
};
46ACF0AE2490FEB200FAAD43 /* TitleTextCell */ = {
isa = PBXGroup;
children = (
46ACF0B02490FEB200FAAD43 /* TitleTextCell.swift */,
46ACF0AF2490FEB200FAAD43 /* TitleTextCell.xib */,
);
path = TitleTextCell;
sourceTree = "<group>";
};
46ACF0B12490FEB200FAAD43 /* ExampleSliderCell */ = {
isa = PBXGroup;
children = (
46ACF0B22490FEB200FAAD43 /* ExampleSliderCell.swift */,
46ACF0B32490FEB200FAAD43 /* ExampleSliderCell.xib */,
);
path = ExampleSliderCell;
sourceTree = "<group>";
};
46ACF0B42490FEB200FAAD43 /* View */ = {
isa = PBXGroup;
children = (
46ACF0B52490FEB200FAAD43 /* ExampleFooterButtonView */,
46ACF0B82490FEB300FAAD43 /* ExampleHeaderGripView */,
);
path = View;
sourceTree = "<group>";
};
46ACF0B52490FEB200FAAD43 /* ExampleFooterButtonView */ = {
isa = PBXGroup;
children = (
46ACF0B62490FEB200FAAD43 /* ExampleFooterButtonView.swift */,
46ACF0B72490FEB300FAAD43 /* ExampleFooterButtonView.xib */,
);
path = ExampleFooterButtonView;
sourceTree = "<group>";
};
46ACF0B82490FEB300FAAD43 /* ExampleHeaderGripView */ = {
isa = PBXGroup;
children = (
46ACF0B92490FEB300FAAD43 /* headerShadow.png */,
46ACF0BA2490FEB300FAAD43 /* ExampleHeaderGripView.swift */,
46ACF0BB2490FEB300FAAD43 /* ExampleHeaderGripView.xib */,
);
path = ExampleHeaderGripView;
sourceTree = "<group>";
};
46ACF0BD2490FEB300FAAD43 /* Container */ = {
isa = PBXGroup;
children = (
46ACF0BE2490FEB300FAAD43 /* ExamplesContainerController.swift */,
46ACF0BF2490FEB300FAAD43 /* ExamplesContainerControllerScrollType.swift */,
46ACF0C02490FEB300FAAD43 /* ExamplesScrollViews.swift */,
);
path = Container;
sourceTree = "<group>";
};
46ACF0DA2492297100FAAD43 /* ExampleAddCollectionView */ = {
isa = PBXGroup;
children = (
46ACF0E2249255ED00FAAD43 /* ExampleAddCollectionViewController.swift */,
46ACF0E1249255ED00FAAD43 /* ExampleAddCollectionViewController.storyboard */,
);
path = ExampleAddCollectionView;
sourceTree = "<group>";
};
607FACC71AFB9204008FA782 = {
isa = PBXGroup;
children = (
607FACF51AFB993E008FA782 /* Podspec */,
607FACD21AFB9204008FA782 /* Example */,
607FACD11AFB9204008FA782 /* Products */,
22F538CF8601A849D034CF8B /* Pods */,
AD5BB6CA5AB2437952B3E0A8 /* Frameworks */,
);
sourceTree = "<group>";
};
607FACD11AFB9204008FA782 /* Products */ = {
isa = PBXGroup;
children = (
607FACD01AFB9204008FA782 /* ContainerController.app */,
);
name = Products;
sourceTree = "<group>";
};
607FACD21AFB9204008FA782 /* Example */ = {
isa = PBXGroup;
children = (
46ACEFD62490F52500FAAD43 /* Framework */,
46ACEFE22490F52500FAAD43 /* Localization */,
46ACEFEB2490F52500FAAD43 /* Maps */,
46ACF09F2490FEB200FAAD43 /* ExamplesSettings */,
46ACF0DA2492297100FAAD43 /* ExampleAddCollectionView */,
46ACEFD32490F52500FAAD43 /* ExamplesAddTableView */,
607FACD51AFB9204008FA782 /* AppDelegate.swift */,
46ACF09D2490FE2700FAAD43 /* SceneDelegate.swift */,
607FACD71AFB9204008FA782 /* ViewController.swift */,
607FACD91AFB9204008FA782 /* Main.storyboard */,
607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,
607FACDC1AFB9204008FA782 /* Images.xcassets */,
607FACD31AFB9204008FA782 /* Supporting Files */,
);
name = Example;
path = ContainerControllerSwift;
sourceTree = "<group>";
};
607FACD31AFB9204008FA782 /* Supporting Files */ = {
isa = PBXGroup;
children = (
46ACF0D82491A75300FAAD43 /* screenLandscape5.png */,
607FACD41AFB9204008FA782 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
607FACF51AFB993E008FA782 /* Podspec */ = {
isa = PBXGroup;
children = (
95BE06AF27887E1C134436AD /* ContainerControllerSwift.podspec */,
1034FE614CC8890CE063531F /* README.md */,
E0FB46D7C5BC0F8759A83A60 /* LICENSE */,
);
name = Podspec;
sourceTree = "<group>";
};
AD5BB6CA5AB2437952B3E0A8 /* Frameworks */ = {
isa = PBXGroup;
children = (
121FB933CAE3EC5A2A00F4B2 /* Pods_ContainerControllerSwift_Example.framework */,
D8903A29B31F63B5A7A8607B /* Pods_ContainerControllerSwift_Tests.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
607FACCF1AFB9204008FA782 /* ContainerControllerSwift_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ContainerControllerSwift_Example" */;
buildPhases = (
83D2AA92C153B73649CBCF16 /* [CP] Check Pods Manifest.lock */,
607FACCC1AFB9204008FA782 /* Sources */,
607FACCD1AFB9204008FA782 /* Frameworks */,
607FACCE1AFB9204008FA782 /* Resources */,
8E6E3C608EFDC3DE4C572F9E /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = ContainerControllerSwift_Example;
productName = ContainerControllerSwift;
productReference = 607FACD01AFB9204008FA782 /* ContainerController.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
607FACC81AFB9204008FA782 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0830;
LastUpgradeCheck = 1150;
ORGANIZATIONNAME = CocoaPods;
TargetAttributes = {
607FACCF1AFB9204008FA782 = {
CreatedOnToolsVersion = 6.3.1;
DevelopmentTeam = Y7546NLJW9;
LastSwiftMigration = 0900;
};
};
};
buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "ContainerControllerSwift" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
ru,
);
mainGroup = 607FACC71AFB9204008FA782;
productRefGroup = 607FACD11AFB9204008FA782 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
607FACCF1AFB9204008FA782 /* ContainerControllerSwift_Example */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
607FACCE1AFB9204008FA782 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
46ACF0CA2490FEB300FAAD43 /* TitleTextCell.xib in Resources */,
46ACF05B2490F52600FAAD43 /* Localizable.strings in Resources */,
46ACF0662490F52600FAAD43 /* MapsLocationCell.xib in Resources */,
46ACF05C2490F52600FAAD43 /* InfoPlist.strings in Resources */,
46ACF07C2490F52600FAAD43 /* MapsMenuTextCell.xib in Resources */,
46ACF0C92490FEB300FAAD43 /* ExampleSwitchCell.xib in Resources */,
46ACF0682490F52600FAAD43 /* MapsSectionCell.xib in Resources */,