-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.pbxproj
1290 lines (1276 loc) · 81.9 KB
/
project.pbxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
29A8E2961C9D923200D06A93 /* UserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 29A8E2951C9D923200D06A93 /* UserModel.m */; };
69F26DCD1C95C0B8002DA87A /* ProximaNova-Light.otf in Resources */ = {isa = PBXBuildFile; fileRef = 69F26DCC1C95C0B8002DA87A /* ProximaNova-Light.otf */; };
69F26DEC1C95C0D1002DA87A /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 69F26DD01C95C0D1002DA87A /* Info.plist */; };
69F26DED1C95C0D1002DA87A /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DD21C95C0D1002DA87A /* MASCompositeConstraint.m */; };
69F26DEE1C95C0D1002DA87A /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DD51C95C0D1002DA87A /* MASConstraint.m */; };
69F26DEF1C95C0D1002DA87A /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DD71C95C0D1002DA87A /* MASConstraintMaker.m */; };
69F26DF01C95C0D1002DA87A /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DD91C95C0D1002DA87A /* MASLayoutConstraint.m */; };
69F26DF11C95C0D1002DA87A /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DDD1C95C0D1002DA87A /* MASViewAttribute.m */; };
69F26DF21C95C0D1002DA87A /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DDF1C95C0D1002DA87A /* MASViewConstraint.m */; };
69F26DF31C95C0D1002DA87A /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DE11C95C0D1002DA87A /* NSArray+MASAdditions.m */; };
69F26DF41C95C0D1002DA87A /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DE41C95C0D1002DA87A /* NSLayoutConstraint+MASDebugAdditions.m */; };
69F26DF51C95C0D1002DA87A /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DE61C95C0D1002DA87A /* View+MASAdditions.m */; };
69F26DF61C95C0D1002DA87A /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DE91C95C0D1002DA87A /* ViewController+MASAdditions.m */; };
69F26DF91C95C0EC002DA87A /* LoginFieldView.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DF81C95C0EC002DA87A /* LoginFieldView.m */; };
69F26E1D1C95C173002DA87A /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DFD1C95C173002DA87A /* MKAnnotationView+WebCache.m */; };
69F26E1E1C95C173002DA87A /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DFF1C95C173002DA87A /* NSData+ImageContentType.m */; };
69F26E1F1C95C173002DA87A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E011C95C173002DA87A /* SDImageCache.m */; };
69F26E201C95C173002DA87A /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E031C95C173002DA87A /* SDWebImageCompat.m */; };
69F26E211C95C173002DA87A /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E051C95C173002DA87A /* SDWebImageDecoder.m */; };
69F26E221C95C173002DA87A /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E071C95C173002DA87A /* SDWebImageDownloader.m */; };
69F26E231C95C173002DA87A /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E091C95C173002DA87A /* SDWebImageDownloaderOperation.m */; };
69F26E241C95C173002DA87A /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E0B1C95C173002DA87A /* SDWebImageManager.m */; };
69F26E251C95C173002DA87A /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E0E1C95C173002DA87A /* SDWebImagePrefetcher.m */; };
69F26E261C95C173002DA87A /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E101C95C173002DA87A /* UIButton+WebCache.m */; };
69F26E271C95C173002DA87A /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E121C95C173002DA87A /* UIImage+GIF.m */; };
69F26E281C95C173002DA87A /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E141C95C173002DA87A /* UIImage+MultiFormat.m */; };
69F26E291C95C173002DA87A /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E161C95C173002DA87A /* UIImage+WebP.m */; };
69F26E2A1C95C173002DA87A /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E181C95C173002DA87A /* UIImageView+HighlightedWebCache.m */; };
69F26E2B1C95C173002DA87A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E1A1C95C173002DA87A /* UIImageView+WebCache.m */; };
69F26E2C1C95C173002DA87A /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F26E1C1C95C173002DA87A /* UIView+WebCacheOperation.m */; };
69F26E2E1C95C2D6002DA87A /* snowGif.gif in Resources */ = {isa = PBXBuildFile; fileRef = 69F26E2D1C95C2D6002DA87A /* snowGif.gif */; };
69F26E2F1C95C33E002DA87A /* ProximaNova-Light.otf in Sources */ = {isa = PBXBuildFile; fileRef = 69F26DCC1C95C0B8002DA87A /* ProximaNova-Light.otf */; };
885075221C9FD04E00FD1B9A /* MainTabbarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075211C9FD04E00FD1B9A /* MainTabbarController.m */; };
885075291CA0E89100FD1B9A /* EditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075281CA0E89100FD1B9A /* EditViewController.m */; };
8850752C1CA0EA1300FD1B9A /* EditToolBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 8850752B1CA0EA1300FD1B9A /* EditToolBar.m */; };
8850752E1CA112B000FD1B9A /* LaunchScreen.png in Resources */ = {isa = PBXBuildFile; fileRef = 8850752D1CA112B000FD1B9A /* LaunchScreen.png */; };
885075311CA11E9300FD1B9A /* TitleTextfield.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075301CA11E9300FD1B9A /* TitleTextfield.m */; };
885075491CA1358900FD1B9A /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 885075331CA1358900FD1B9A /* IQKeyboardManager.bundle */; };
8850754A1CA1358900FD1B9A /* IQKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075351CA1358900FD1B9A /* IQKeyboardManager.m */; };
8850754B1CA1358900FD1B9A /* IQSegmentedNextPrevious.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075391CA1358900FD1B9A /* IQSegmentedNextPrevious.m */; };
8850754C1CA1358900FD1B9A /* IQTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8850753B1CA1358900FD1B9A /* IQTextView.m */; };
8850754D1CA1358900FD1B9A /* IQTitleBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8850753D1CA1358900FD1B9A /* IQTitleBarButtonItem.m */; };
8850754E1CA1358900FD1B9A /* IQToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 8850753F1CA1358900FD1B9A /* IQToolbar.m */; };
8850754F1CA1358900FD1B9A /* NSArray+Sort.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075421CA1358900FD1B9A /* NSArray+Sort.m */; };
885075501CA1358900FD1B9A /* UIView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075441CA1358900FD1B9A /* UIView+Hierarchy.m */; };
885075511CA1358900FD1B9A /* UIView+IQKeyboardToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075461CA1358900FD1B9A /* UIView+IQKeyboardToolbar.m */; };
885075521CA1358900FD1B9A /* UIWindow+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 885075481CA1358900FD1B9A /* UIWindow+Hierarchy.m */; };
8895F98A1CAA0F2500D8F1D6 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8895F9891CAA0F2500D8F1D6 /* RootViewController.m */; };
889CD0211C9667FA00664F83 /* DeformationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 889CD0201C9667FA00664F83 /* DeformationButton.m */; };
889CD0241C969BA800664F83 /* ProximaNova-Semibold.otf in Resources */ = {isa = PBXBuildFile; fileRef = 889CD0231C969BA800664F83 /* ProximaNova-Semibold.otf */; };
889CD0271C96A31500664F83 /* SignUpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 889CD0261C96A31500664F83 /* SignUpViewController.m */; };
889CD02B1C96AC3800664F83 /* bgImage_blur.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 889CD02A1C96AC3800664F83 /* bgImage_blur.jpg */; };
889CD02D1C96B23B00664F83 /* bgImage.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 889CD02C1C96B23B00664F83 /* bgImage.jpg */; };
889CD02F1C979B3B00664F83 /* signupBg.JPG in Resources */ = {isa = PBXBuildFile; fileRef = 889CD02E1C979B3B00664F83 /* signupBg.JPG */; };
889CD0321C979CEB00664F83 /* UIImage+Addition.m in Sources */ = {isa = PBXBuildFile; fileRef = 889CD0311C979CEB00664F83 /* UIImage+Addition.m */; };
889CD0331C97AA5D00664F83 /* ProximaNova-Semibold.otf in Sources */ = {isa = PBXBuildFile; fileRef = 889CD0231C969BA800664F83 /* ProximaNova-Semibold.otf */; };
889CD0371C97BA5D00664F83 /* UserHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 889CD0361C97BA5D00664F83 /* UserHeaderView.m */; };
88A205AD1C9A9A60009EEFB6 /* NoteTabelModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A205AC1C9A9A60009EEFB6 /* NoteTabelModel.m */; };
88A205B01C9AA5D9009EEFB6 /* DefaultUserBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 88A205AE1C9AA5D9009EEFB6 /* DefaultUserBackground.png */; };
88A205B11C9AA5D9009EEFB6 /* DefaultUserIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 88A205AF1C9AA5D9009EEFB6 /* DefaultUserIcon.png */; };
88A205B51C9BE136009EEFB6 /* BmobHelp.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A205B41C9BE136009EEFB6 /* BmobHelp.m */; };
88A2AE701CA28A9200E09AE6 /* WZXDateToStrTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A2AE6F1CA28A9200E09AE6 /* WZXDateToStrTool.m */; };
88A2AE731CA389E300E09AE6 /* UINavigationBar+Awesome.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A2AE721CA389E300E09AE6 /* UINavigationBar+Awesome.m */; };
88B09C371CA13FDD00CF56D8 /* KLNotificationHelp.m in Sources */ = {isa = PBXBuildFile; fileRef = 88B09C361CA13FDD00CF56D8 /* KLNotificationHelp.m */; };
88B46EC31C97F09E0074EE4F /* ImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88B46EC21C97F09E0074EE4F /* ImageCropViewController.m */; };
88B46ECA1C994E0E0074EE4F /* EmailCheckViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88B46EC91C994E0E0074EE4F /* EmailCheckViewController.m */; };
88DE00EB1C929CF6003AADF7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE00EA1C929CF6003AADF7 /* main.m */; };
88DE00EE1C929CF6003AADF7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE00ED1C929CF6003AADF7 /* AppDelegate.m */; };
88DE00F41C929CF6003AADF7 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 88DE00F21C929CF6003AADF7 /* Main.storyboard */; };
88DE00F61C929CF6003AADF7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 88DE00F51C929CF6003AADF7 /* Assets.xcassets */; };
88DE00F91C929CF6003AADF7 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 88DE00F71C929CF6003AADF7 /* LaunchScreen.storyboard */; };
88DE01041C929CF6003AADF7 /* OnlyNoteTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE01031C929CF6003AADF7 /* OnlyNoteTests.m */; };
88DE010F1C929CF6003AADF7 /* OnlyNoteUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE010E1C929CF6003AADF7 /* OnlyNoteUITests.m */; };
88DE012A1C929EF3003AADF7 /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE01291C929EF3003AADF7 /* HomeViewController.m */; };
88DE01351C929F54003AADF7 /* MyCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE01321C929F54003AADF7 /* MyCollectionViewCell.m */; };
88DE01361C929F54003AADF7 /* StickCollectionViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE01341C929F54003AADF7 /* StickCollectionViewFlowLayout.m */; };
88DE01391C929F68003AADF7 /* RNNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE01381C929F68003AADF7 /* RNNavigationController.m */; };
88DE013C1C92A0D5003AADF7 /* UserViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE013B1C92A0D5003AADF7 /* UserViewController.m */; };
88DE013F1C92A19D003AADF7 /* UINavigationItem+CustomBackButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE013E1C92A19D003AADF7 /* UINavigationItem+CustomBackButton.m */; };
88DE01451C92B146003AADF7 /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE01441C92B146003AADF7 /* UIColor+Hex.m */; };
88DE014C1C92C427003AADF7 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE014B1C92C427003AADF7 /* LoginViewController.m */; };
88DE01501C92C49C003AADF7 /* LoginTextfield.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DE014F1C92C49C003AADF7 /* LoginTextfield.m */; };
88E69B1E1CAA746A007EC945 /* LeftViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 88E69B1D1CAA746A007EC945 /* LeftViewCell.m */; };
88F468671CAA1CE3003000CC /* UIView+SHCZExt.m in Sources */ = {isa = PBXBuildFile; fileRef = 88F468661CAA1CE3003000CC /* UIView+SHCZExt.m */; };
88F468691CAA2144003000CC /* sidebar_bg.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 88F468681CAA2144003000CC /* sidebar_bg.jpg */; };
88F4686D1CAA2BBF003000CC /* LeftListView.m in Sources */ = {isa = PBXBuildFile; fileRef = 88F4686C1CAA2BBF003000CC /* LeftListView.m */; };
D84CFC5D8C42BABA789EDF9D /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 973EE636FA21E1802513AF71 /* libPods.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
88DE01001C929CF6003AADF7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 88DE00DE1C929CF6003AADF7 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 88DE00E51C929CF6003AADF7;
remoteInfo = OnlyNote;
};
88DE010B1C929CF6003AADF7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 88DE00DE1C929CF6003AADF7 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 88DE00E51C929CF6003AADF7;
remoteInfo = OnlyNote;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
29A8E2941C9D923200D06A93 /* UserModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserModel.h; sourceTree = "<group>"; };
29A8E2951C9D923200D06A93 /* UserModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserModel.m; sourceTree = "<group>"; };
69F26DCC1C95C0B8002DA87A /* ProximaNova-Light.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "ProximaNova-Light.otf"; sourceTree = "<group>"; };
69F26DD01C95C0D1002DA87A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
69F26DD11C95C0D1002DA87A /* MASCompositeConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASCompositeConstraint.h; sourceTree = "<group>"; };
69F26DD21C95C0D1002DA87A /* MASCompositeConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASCompositeConstraint.m; sourceTree = "<group>"; };
69F26DD31C95C0D1002DA87A /* MASConstraint+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MASConstraint+Private.h"; sourceTree = "<group>"; };
69F26DD41C95C0D1002DA87A /* MASConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraint.h; sourceTree = "<group>"; };
69F26DD51C95C0D1002DA87A /* MASConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASConstraint.m; sourceTree = "<group>"; };
69F26DD61C95C0D1002DA87A /* MASConstraintMaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraintMaker.h; sourceTree = "<group>"; };
69F26DD71C95C0D1002DA87A /* MASConstraintMaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASConstraintMaker.m; sourceTree = "<group>"; };
69F26DD81C95C0D1002DA87A /* MASLayoutConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASLayoutConstraint.h; sourceTree = "<group>"; };
69F26DD91C95C0D1002DA87A /* MASLayoutConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASLayoutConstraint.m; sourceTree = "<group>"; };
69F26DDA1C95C0D1002DA87A /* Masonry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Masonry.h; sourceTree = "<group>"; };
69F26DDB1C95C0D1002DA87A /* MASUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASUtilities.h; sourceTree = "<group>"; };
69F26DDC1C95C0D1002DA87A /* MASViewAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewAttribute.h; sourceTree = "<group>"; };
69F26DDD1C95C0D1002DA87A /* MASViewAttribute.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASViewAttribute.m; sourceTree = "<group>"; };
69F26DDE1C95C0D1002DA87A /* MASViewConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewConstraint.h; sourceTree = "<group>"; };
69F26DDF1C95C0D1002DA87A /* MASViewConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASViewConstraint.m; sourceTree = "<group>"; };
69F26DE01C95C0D1002DA87A /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASAdditions.h"; sourceTree = "<group>"; };
69F26DE11C95C0D1002DA87A /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+MASAdditions.m"; sourceTree = "<group>"; };
69F26DE21C95C0D1002DA87A /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
69F26DE31C95C0D1002DA87A /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
69F26DE41C95C0D1002DA87A /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
69F26DE51C95C0D1002DA87A /* View+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASAdditions.h"; sourceTree = "<group>"; };
69F26DE61C95C0D1002DA87A /* View+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "View+MASAdditions.m"; sourceTree = "<group>"; };
69F26DE71C95C0D1002DA87A /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
69F26DE81C95C0D1002DA87A /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ViewController+MASAdditions.h"; sourceTree = "<group>"; };
69F26DE91C95C0D1002DA87A /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ViewController+MASAdditions.m"; sourceTree = "<group>"; };
69F26DF71C95C0EC002DA87A /* LoginFieldView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginFieldView.h; sourceTree = "<group>"; };
69F26DF81C95C0EC002DA87A /* LoginFieldView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginFieldView.m; sourceTree = "<group>"; };
69F26DFA1C95C10E002DA87A /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
69F26DFC1C95C173002DA87A /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MKAnnotationView+WebCache.h"; sourceTree = "<group>"; };
69F26DFD1C95C173002DA87A /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MKAnnotationView+WebCache.m"; sourceTree = "<group>"; };
69F26DFE1C95C173002DA87A /* NSData+ImageContentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageContentType.h"; sourceTree = "<group>"; };
69F26DFF1C95C173002DA87A /* NSData+ImageContentType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ImageContentType.m"; sourceTree = "<group>"; };
69F26E001C95C173002DA87A /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCache.h; sourceTree = "<group>"; };
69F26E011C95C173002DA87A /* SDImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCache.m; sourceTree = "<group>"; };
69F26E021C95C173002DA87A /* SDWebImageCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCompat.h; sourceTree = "<group>"; };
69F26E031C95C173002DA87A /* SDWebImageCompat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCompat.m; sourceTree = "<group>"; };
69F26E041C95C173002DA87A /* SDWebImageDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDecoder.h; sourceTree = "<group>"; };
69F26E051C95C173002DA87A /* SDWebImageDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDecoder.m; sourceTree = "<group>"; };
69F26E061C95C173002DA87A /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloader.h; sourceTree = "<group>"; };
69F26E071C95C173002DA87A /* SDWebImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloader.m; sourceTree = "<group>"; };
69F26E081C95C173002DA87A /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
69F26E091C95C173002DA87A /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloaderOperation.m; sourceTree = "<group>"; };
69F26E0A1C95C173002DA87A /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManager.h; sourceTree = "<group>"; };
69F26E0B1C95C173002DA87A /* SDWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageManager.m; sourceTree = "<group>"; };
69F26E0C1C95C173002DA87A /* SDWebImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageOperation.h; sourceTree = "<group>"; };
69F26E0D1C95C173002DA87A /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImagePrefetcher.h; sourceTree = "<group>"; };
69F26E0E1C95C173002DA87A /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImagePrefetcher.m; sourceTree = "<group>"; };
69F26E0F1C95C173002DA87A /* UIButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+WebCache.h"; sourceTree = "<group>"; };
69F26E101C95C173002DA87A /* UIButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+WebCache.m"; sourceTree = "<group>"; };
69F26E111C95C173002DA87A /* UIImage+GIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GIF.h"; sourceTree = "<group>"; };
69F26E121C95C173002DA87A /* UIImage+GIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GIF.m"; sourceTree = "<group>"; };
69F26E131C95C173002DA87A /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
69F26E141C95C173002DA87A /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MultiFormat.m"; sourceTree = "<group>"; };
69F26E151C95C173002DA87A /* UIImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+WebP.h"; sourceTree = "<group>"; };
69F26E161C95C173002DA87A /* UIImage+WebP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+WebP.m"; sourceTree = "<group>"; };
69F26E171C95C173002DA87A /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
69F26E181C95C173002DA87A /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; };
69F26E191C95C173002DA87A /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+WebCache.h"; sourceTree = "<group>"; };
69F26E1A1C95C173002DA87A /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+WebCache.m"; sourceTree = "<group>"; };
69F26E1B1C95C173002DA87A /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
69F26E1C1C95C173002DA87A /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WebCacheOperation.m"; sourceTree = "<group>"; };
69F26E2D1C95C2D6002DA87A /* snowGif.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = snowGif.gif; sourceTree = "<group>"; };
7628CAA3F5C9732D6BAEC015 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
885075201C9FD04E00FD1B9A /* MainTabbarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainTabbarController.h; sourceTree = "<group>"; };
885075211C9FD04E00FD1B9A /* MainTabbarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainTabbarController.m; sourceTree = "<group>"; };
885075271CA0E89100FD1B9A /* EditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EditViewController.h; sourceTree = "<group>"; };
885075281CA0E89100FD1B9A /* EditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EditViewController.m; sourceTree = "<group>"; };
8850752A1CA0EA1300FD1B9A /* EditToolBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EditToolBar.h; sourceTree = "<group>"; };
8850752B1CA0EA1300FD1B9A /* EditToolBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EditToolBar.m; sourceTree = "<group>"; };
8850752D1CA112B000FD1B9A /* LaunchScreen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LaunchScreen.png; sourceTree = "<group>"; };
8850752F1CA11E9300FD1B9A /* TitleTextfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TitleTextfield.h; sourceTree = "<group>"; };
885075301CA11E9300FD1B9A /* TitleTextfield.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TitleTextfield.m; sourceTree = "<group>"; };
885075331CA1358900FD1B9A /* IQKeyboardManager.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = IQKeyboardManager.bundle; sourceTree = "<group>"; };
885075341CA1358900FD1B9A /* IQKeyboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManager.h; sourceTree = "<group>"; };
885075351CA1358900FD1B9A /* IQKeyboardManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQKeyboardManager.m; sourceTree = "<group>"; };
885075361CA1358900FD1B9A /* IQKeyboardManagerConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManagerConstants.h; sourceTree = "<group>"; };
885075371CA1358900FD1B9A /* IQKeyboardManagerConstantsInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManagerConstantsInternal.h; sourceTree = "<group>"; };
885075381CA1358900FD1B9A /* IQSegmentedNextPrevious.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQSegmentedNextPrevious.h; sourceTree = "<group>"; };
885075391CA1358900FD1B9A /* IQSegmentedNextPrevious.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQSegmentedNextPrevious.m; sourceTree = "<group>"; };
8850753A1CA1358900FD1B9A /* IQTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQTextView.h; sourceTree = "<group>"; };
8850753B1CA1358900FD1B9A /* IQTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQTextView.m; sourceTree = "<group>"; };
8850753C1CA1358900FD1B9A /* IQTitleBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQTitleBarButtonItem.h; sourceTree = "<group>"; };
8850753D1CA1358900FD1B9A /* IQTitleBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQTitleBarButtonItem.m; sourceTree = "<group>"; };
8850753E1CA1358900FD1B9A /* IQToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQToolbar.h; sourceTree = "<group>"; };
8850753F1CA1358900FD1B9A /* IQToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQToolbar.m; sourceTree = "<group>"; };
885075401CA1358900FD1B9A /* KeyboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyboardManager.h; sourceTree = "<group>"; };
885075411CA1358900FD1B9A /* NSArray+Sort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+Sort.h"; sourceTree = "<group>"; };
885075421CA1358900FD1B9A /* NSArray+Sort.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+Sort.m"; sourceTree = "<group>"; };
885075431CA1358900FD1B9A /* UIView+Hierarchy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hierarchy.h"; sourceTree = "<group>"; };
885075441CA1358900FD1B9A /* UIView+Hierarchy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hierarchy.m"; sourceTree = "<group>"; };
885075451CA1358900FD1B9A /* UIView+IQKeyboardToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+IQKeyboardToolbar.h"; sourceTree = "<group>"; };
885075461CA1358900FD1B9A /* UIView+IQKeyboardToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+IQKeyboardToolbar.m"; sourceTree = "<group>"; };
885075471CA1358900FD1B9A /* UIWindow+Hierarchy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+Hierarchy.h"; sourceTree = "<group>"; };
885075481CA1358900FD1B9A /* UIWindow+Hierarchy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+Hierarchy.m"; sourceTree = "<group>"; };
8895F9881CAA0F2500D8F1D6 /* RootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootViewController.h; sourceTree = "<group>"; };
8895F9891CAA0F2500D8F1D6 /* RootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RootViewController.m; sourceTree = "<group>"; };
889CD01F1C9667FA00664F83 /* DeformationButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeformationButton.h; sourceTree = "<group>"; };
889CD0201C9667FA00664F83 /* DeformationButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeformationButton.m; sourceTree = "<group>"; };
889CD0221C968B2500664F83 /* AppMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppMacro.h; sourceTree = "<group>"; };
889CD0231C969BA800664F83 /* ProximaNova-Semibold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "ProximaNova-Semibold.otf"; sourceTree = "<group>"; };
889CD0251C96A31500664F83 /* SignUpViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SignUpViewController.h; sourceTree = "<group>"; };
889CD0261C96A31500664F83 /* SignUpViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SignUpViewController.m; sourceTree = "<group>"; };
889CD02A1C96AC3800664F83 /* bgImage_blur.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = bgImage_blur.jpg; sourceTree = "<group>"; };
889CD02C1C96B23B00664F83 /* bgImage.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = bgImage.jpg; sourceTree = "<group>"; };
889CD02E1C979B3B00664F83 /* signupBg.JPG */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = signupBg.JPG; sourceTree = "<group>"; };
889CD0301C979CEB00664F83 /* UIImage+Addition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addition.h"; sourceTree = "<group>"; };
889CD0311C979CEB00664F83 /* UIImage+Addition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addition.m"; sourceTree = "<group>"; };
889CD0351C97BA5D00664F83 /* UserHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserHeaderView.h; sourceTree = "<group>"; };
889CD0361C97BA5D00664F83 /* UserHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserHeaderView.m; sourceTree = "<group>"; };
88A205AB1C9A9A60009EEFB6 /* NoteTabelModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoteTabelModel.h; sourceTree = "<group>"; };
88A205AC1C9A9A60009EEFB6 /* NoteTabelModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoteTabelModel.m; sourceTree = "<group>"; };
88A205AE1C9AA5D9009EEFB6 /* DefaultUserBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DefaultUserBackground.png; sourceTree = "<group>"; };
88A205AF1C9AA5D9009EEFB6 /* DefaultUserIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DefaultUserIcon.png; sourceTree = "<group>"; };
88A205B31C9BE136009EEFB6 /* BmobHelp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BmobHelp.h; sourceTree = "<group>"; };
88A205B41C9BE136009EEFB6 /* BmobHelp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BmobHelp.m; sourceTree = "<group>"; };
88A2AE6E1CA28A9200E09AE6 /* WZXDateToStrTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WZXDateToStrTool.h; sourceTree = "<group>"; };
88A2AE6F1CA28A9200E09AE6 /* WZXDateToStrTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WZXDateToStrTool.m; sourceTree = "<group>"; };
88A2AE711CA389E300E09AE6 /* UINavigationBar+Awesome.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationBar+Awesome.h"; sourceTree = "<group>"; };
88A2AE721CA389E300E09AE6 /* UINavigationBar+Awesome.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationBar+Awesome.m"; sourceTree = "<group>"; };
88B09C351CA13FDD00CF56D8 /* KLNotificationHelp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KLNotificationHelp.h; sourceTree = "<group>"; };
88B09C361CA13FDD00CF56D8 /* KLNotificationHelp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KLNotificationHelp.m; sourceTree = "<group>"; };
88B46EC11C97F09E0074EE4F /* ImageCropViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageCropViewController.h; sourceTree = "<group>"; };
88B46EC21C97F09E0074EE4F /* ImageCropViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageCropViewController.m; sourceTree = "<group>"; };
88B46EC81C994E0E0074EE4F /* EmailCheckViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmailCheckViewController.h; sourceTree = "<group>"; };
88B46EC91C994E0E0074EE4F /* EmailCheckViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmailCheckViewController.m; sourceTree = "<group>"; };
88DE00E61C929CF6003AADF7 /* OnlyNote.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OnlyNote.app; sourceTree = BUILT_PRODUCTS_DIR; };
88DE00EA1C929CF6003AADF7 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
88DE00EC1C929CF6003AADF7 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
88DE00ED1C929CF6003AADF7 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
88DE00F31C929CF6003AADF7 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
88DE00F51C929CF6003AADF7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
88DE00F81C929CF6003AADF7 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
88DE00FA1C929CF6003AADF7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
88DE00FF1C929CF6003AADF7 /* OnlyNoteTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OnlyNoteTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
88DE01031C929CF6003AADF7 /* OnlyNoteTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OnlyNoteTests.m; sourceTree = "<group>"; };
88DE01051C929CF6003AADF7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
88DE010A1C929CF6003AADF7 /* OnlyNoteUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OnlyNoteUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
88DE010E1C929CF6003AADF7 /* OnlyNoteUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OnlyNoteUITests.m; sourceTree = "<group>"; };
88DE01101C929CF6003AADF7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
88DE01281C929EF3003AADF7 /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
88DE01291C929EF3003AADF7 /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
88DE01311C929F54003AADF7 /* MyCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyCollectionViewCell.h; sourceTree = "<group>"; };
88DE01321C929F54003AADF7 /* MyCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyCollectionViewCell.m; sourceTree = "<group>"; };
88DE01331C929F54003AADF7 /* StickCollectionViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StickCollectionViewFlowLayout.h; sourceTree = "<group>"; };
88DE01341C929F54003AADF7 /* StickCollectionViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StickCollectionViewFlowLayout.m; sourceTree = "<group>"; };
88DE01371C929F68003AADF7 /* RNNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNNavigationController.h; sourceTree = "<group>"; };
88DE01381C929F68003AADF7 /* RNNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNNavigationController.m; sourceTree = "<group>"; };
88DE013A1C92A0D5003AADF7 /* UserViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserViewController.h; sourceTree = "<group>"; };
88DE013B1C92A0D5003AADF7 /* UserViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserViewController.m; sourceTree = "<group>"; };
88DE013D1C92A19D003AADF7 /* UINavigationItem+CustomBackButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationItem+CustomBackButton.h"; sourceTree = "<group>"; };
88DE013E1C92A19D003AADF7 /* UINavigationItem+CustomBackButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationItem+CustomBackButton.m"; sourceTree = "<group>"; };
88DE01431C92B146003AADF7 /* UIColor+Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
88DE01441C92B146003AADF7 /* UIColor+Hex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
88DE014A1C92C427003AADF7 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
88DE014B1C92C427003AADF7 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
88DE014E1C92C49C003AADF7 /* LoginTextfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginTextfield.h; sourceTree = "<group>"; };
88DE014F1C92C49C003AADF7 /* LoginTextfield.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginTextfield.m; sourceTree = "<group>"; };
88E69B1C1CAA746A007EC945 /* LeftViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeftViewCell.h; sourceTree = "<group>"; };
88E69B1D1CAA746A007EC945 /* LeftViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeftViewCell.m; sourceTree = "<group>"; };
88F468651CAA1CE3003000CC /* UIView+SHCZExt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SHCZExt.h"; sourceTree = "<group>"; };
88F468661CAA1CE3003000CC /* UIView+SHCZExt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SHCZExt.m"; sourceTree = "<group>"; };
88F468681CAA2144003000CC /* sidebar_bg.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = sidebar_bg.jpg; sourceTree = "<group>"; };
88F4686B1CAA2BBF003000CC /* LeftListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeftListView.h; sourceTree = "<group>"; };
88F4686C1CAA2BBF003000CC /* LeftListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeftListView.m; sourceTree = "<group>"; };
973EE636FA21E1802513AF71 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
E3C70C264AD1B0374144BD9D /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
88DE00E31C929CF6003AADF7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D84CFC5D8C42BABA789EDF9D /* libPods.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
88DE00FC1C929CF6003AADF7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
88DE01071C929CF6003AADF7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
29A8E2931C9D921C00D06A93 /* model */ = {
isa = PBXGroup;
children = (
29A8E2941C9D923200D06A93 /* UserModel.h */,
29A8E2951C9D923200D06A93 /* UserModel.m */,
);
path = model;
sourceTree = "<group>";
};
35524CA987A5BB05FC150599 /* Frameworks */ = {
isa = PBXGroup;
children = (
973EE636FA21E1802513AF71 /* libPods.a */,
);
name = Frameworks;
sourceTree = "<group>";
};
69F26DCB1C95C0B8002DA87A /* DataSource */ = {
isa = PBXGroup;
children = (
88F468681CAA2144003000CC /* sidebar_bg.jpg */,
8850752D1CA112B000FD1B9A /* LaunchScreen.png */,
88A205AE1C9AA5D9009EEFB6 /* DefaultUserBackground.png */,
88A205AF1C9AA5D9009EEFB6 /* DefaultUserIcon.png */,
69F26DCC1C95C0B8002DA87A /* ProximaNova-Light.otf */,
889CD0231C969BA800664F83 /* ProximaNova-Semibold.otf */,
889CD02A1C96AC3800664F83 /* bgImage_blur.jpg */,
889CD02C1C96B23B00664F83 /* bgImage.jpg */,
69F26E2D1C95C2D6002DA87A /* snowGif.gif */,
889CD02E1C979B3B00664F83 /* signupBg.JPG */,
);
path = DataSource;
sourceTree = "<group>";
};
69F26DCE1C95C0D1002DA87A /* ThirdPartyLib */ = {
isa = PBXGroup;
children = (
88A2AE6D1CA28A9200E09AE6 /* DateToStr */,
885075321CA1358900FD1B9A /* IQKeyBoardManager */,
69F26DFB1C95C173002DA87A /* SDWebImage */,
69F26DCF1C95C0D1002DA87A /* Masonry */,
);
path = ThirdPartyLib;
sourceTree = "<group>";
};
69F26DCF1C95C0D1002DA87A /* Masonry */ = {
isa = PBXGroup;
children = (
69F26DD01C95C0D1002DA87A /* Info.plist */,
69F26DD11C95C0D1002DA87A /* MASCompositeConstraint.h */,
69F26DD21C95C0D1002DA87A /* MASCompositeConstraint.m */,
69F26DD31C95C0D1002DA87A /* MASConstraint+Private.h */,
69F26DD41C95C0D1002DA87A /* MASConstraint.h */,
69F26DD51C95C0D1002DA87A /* MASConstraint.m */,
69F26DD61C95C0D1002DA87A /* MASConstraintMaker.h */,
69F26DD71C95C0D1002DA87A /* MASConstraintMaker.m */,
69F26DD81C95C0D1002DA87A /* MASLayoutConstraint.h */,
69F26DD91C95C0D1002DA87A /* MASLayoutConstraint.m */,
69F26DDA1C95C0D1002DA87A /* Masonry.h */,
69F26DDB1C95C0D1002DA87A /* MASUtilities.h */,
69F26DDC1C95C0D1002DA87A /* MASViewAttribute.h */,
69F26DDD1C95C0D1002DA87A /* MASViewAttribute.m */,
69F26DDE1C95C0D1002DA87A /* MASViewConstraint.h */,
69F26DDF1C95C0D1002DA87A /* MASViewConstraint.m */,
69F26DE01C95C0D1002DA87A /* NSArray+MASAdditions.h */,
69F26DE11C95C0D1002DA87A /* NSArray+MASAdditions.m */,
69F26DE21C95C0D1002DA87A /* NSArray+MASShorthandAdditions.h */,
69F26DE31C95C0D1002DA87A /* NSLayoutConstraint+MASDebugAdditions.h */,
69F26DE41C95C0D1002DA87A /* NSLayoutConstraint+MASDebugAdditions.m */,
69F26DE51C95C0D1002DA87A /* View+MASAdditions.h */,
69F26DE61C95C0D1002DA87A /* View+MASAdditions.m */,
69F26DE71C95C0D1002DA87A /* View+MASShorthandAdditions.h */,
69F26DE81C95C0D1002DA87A /* ViewController+MASAdditions.h */,
69F26DE91C95C0D1002DA87A /* ViewController+MASAdditions.m */,
);
path = Masonry;
sourceTree = "<group>";
};
69F26DFB1C95C173002DA87A /* SDWebImage */ = {
isa = PBXGroup;
children = (
69F26DFC1C95C173002DA87A /* MKAnnotationView+WebCache.h */,
69F26DFD1C95C173002DA87A /* MKAnnotationView+WebCache.m */,
69F26DFE1C95C173002DA87A /* NSData+ImageContentType.h */,
69F26DFF1C95C173002DA87A /* NSData+ImageContentType.m */,
69F26E001C95C173002DA87A /* SDImageCache.h */,
69F26E011C95C173002DA87A /* SDImageCache.m */,
69F26E021C95C173002DA87A /* SDWebImageCompat.h */,
69F26E031C95C173002DA87A /* SDWebImageCompat.m */,
69F26E041C95C173002DA87A /* SDWebImageDecoder.h */,
69F26E051C95C173002DA87A /* SDWebImageDecoder.m */,
69F26E061C95C173002DA87A /* SDWebImageDownloader.h */,
69F26E071C95C173002DA87A /* SDWebImageDownloader.m */,
69F26E081C95C173002DA87A /* SDWebImageDownloaderOperation.h */,
69F26E091C95C173002DA87A /* SDWebImageDownloaderOperation.m */,
69F26E0A1C95C173002DA87A /* SDWebImageManager.h */,
69F26E0B1C95C173002DA87A /* SDWebImageManager.m */,
69F26E0C1C95C173002DA87A /* SDWebImageOperation.h */,
69F26E0D1C95C173002DA87A /* SDWebImagePrefetcher.h */,
69F26E0E1C95C173002DA87A /* SDWebImagePrefetcher.m */,
69F26E0F1C95C173002DA87A /* UIButton+WebCache.h */,
69F26E101C95C173002DA87A /* UIButton+WebCache.m */,
69F26E111C95C173002DA87A /* UIImage+GIF.h */,
69F26E121C95C173002DA87A /* UIImage+GIF.m */,
69F26E131C95C173002DA87A /* UIImage+MultiFormat.h */,
69F26E141C95C173002DA87A /* UIImage+MultiFormat.m */,
69F26E151C95C173002DA87A /* UIImage+WebP.h */,
69F26E161C95C173002DA87A /* UIImage+WebP.m */,
69F26E171C95C173002DA87A /* UIImageView+HighlightedWebCache.h */,
69F26E181C95C173002DA87A /* UIImageView+HighlightedWebCache.m */,
69F26E191C95C173002DA87A /* UIImageView+WebCache.h */,
69F26E1A1C95C173002DA87A /* UIImageView+WebCache.m */,
69F26E1B1C95C173002DA87A /* UIView+WebCacheOperation.h */,
69F26E1C1C95C173002DA87A /* UIView+WebCacheOperation.m */,
);
path = SDWebImage;
sourceTree = "<group>";
};
885075231CA0E83D00FD1B9A /* Edit */ = {
isa = PBXGroup;
children = (
885075241CA0E83D00FD1B9A /* controllers */,
885075251CA0E83D00FD1B9A /* model */,
885075261CA0E83D00FD1B9A /* views */,
);
path = Edit;
sourceTree = "<group>";
};
885075241CA0E83D00FD1B9A /* controllers */ = {
isa = PBXGroup;
children = (
885075271CA0E89100FD1B9A /* EditViewController.h */,
885075281CA0E89100FD1B9A /* EditViewController.m */,
);
path = controllers;
sourceTree = "<group>";
};
885075251CA0E83D00FD1B9A /* model */ = {
isa = PBXGroup;
children = (
);
path = model;
sourceTree = "<group>";
};
885075261CA0E83D00FD1B9A /* views */ = {
isa = PBXGroup;
children = (
8850752A1CA0EA1300FD1B9A /* EditToolBar.h */,
8850752B1CA0EA1300FD1B9A /* EditToolBar.m */,
8850752F1CA11E9300FD1B9A /* TitleTextfield.h */,
885075301CA11E9300FD1B9A /* TitleTextfield.m */,
);
path = views;
sourceTree = "<group>";
};
885075321CA1358900FD1B9A /* IQKeyBoardManager */ = {
isa = PBXGroup;
children = (
885075331CA1358900FD1B9A /* IQKeyboardManager.bundle */,
885075341CA1358900FD1B9A /* IQKeyboardManager.h */,
885075351CA1358900FD1B9A /* IQKeyboardManager.m */,
885075361CA1358900FD1B9A /* IQKeyboardManagerConstants.h */,
885075371CA1358900FD1B9A /* IQKeyboardManagerConstantsInternal.h */,
885075381CA1358900FD1B9A /* IQSegmentedNextPrevious.h */,
885075391CA1358900FD1B9A /* IQSegmentedNextPrevious.m */,
8850753A1CA1358900FD1B9A /* IQTextView.h */,
8850753B1CA1358900FD1B9A /* IQTextView.m */,
8850753C1CA1358900FD1B9A /* IQTitleBarButtonItem.h */,
8850753D1CA1358900FD1B9A /* IQTitleBarButtonItem.m */,
8850753E1CA1358900FD1B9A /* IQToolbar.h */,
8850753F1CA1358900FD1B9A /* IQToolbar.m */,
885075401CA1358900FD1B9A /* KeyboardManager.h */,
885075411CA1358900FD1B9A /* NSArray+Sort.h */,
885075421CA1358900FD1B9A /* NSArray+Sort.m */,
885075431CA1358900FD1B9A /* UIView+Hierarchy.h */,
885075441CA1358900FD1B9A /* UIView+Hierarchy.m */,
885075451CA1358900FD1B9A /* UIView+IQKeyboardToolbar.h */,
885075461CA1358900FD1B9A /* UIView+IQKeyboardToolbar.m */,
885075471CA1358900FD1B9A /* UIWindow+Hierarchy.h */,
885075481CA1358900FD1B9A /* UIWindow+Hierarchy.m */,
);
path = IQKeyBoardManager;
sourceTree = "<group>";
};
889CD0341C97BA4600664F83 /* views */ = {
isa = PBXGroup;
children = (
889CD0351C97BA5D00664F83 /* UserHeaderView.h */,
889CD0361C97BA5D00664F83 /* UserHeaderView.m */,
);
path = views;
sourceTree = "<group>";
};
88A205B21C9BE127009EEFB6 /* helps */ = {
isa = PBXGroup;
children = (
88A205B31C9BE136009EEFB6 /* BmobHelp.h */,
88A205B41C9BE136009EEFB6 /* BmobHelp.m */,
88B09C351CA13FDD00CF56D8 /* KLNotificationHelp.h */,
88B09C361CA13FDD00CF56D8 /* KLNotificationHelp.m */,
);
path = helps;
sourceTree = "<group>";
};
88A2AE6D1CA28A9200E09AE6 /* DateToStr */ = {
isa = PBXGroup;
children = (
88A2AE6E1CA28A9200E09AE6 /* WZXDateToStrTool.h */,
88A2AE6F1CA28A9200E09AE6 /* WZXDateToStrTool.m */,
);
path = DateToStr;
sourceTree = "<group>";
};
88DE00DD1C929CF6003AADF7 = {
isa = PBXGroup;
children = (
88DE00E81C929CF6003AADF7 /* OnlyNote */,
88DE01021C929CF6003AADF7 /* OnlyNoteTests */,
88DE010D1C929CF6003AADF7 /* OnlyNoteUITests */,
88DE00E71C929CF6003AADF7 /* Products */,
F573D056B54A434558AE7BCC /* Pods */,
35524CA987A5BB05FC150599 /* Frameworks */,
);
sourceTree = "<group>";
};
88DE00E71C929CF6003AADF7 /* Products */ = {
isa = PBXGroup;
children = (
88DE00E61C929CF6003AADF7 /* OnlyNote.app */,
88DE00FF1C929CF6003AADF7 /* OnlyNoteTests.xctest */,
88DE010A1C929CF6003AADF7 /* OnlyNoteUITests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
88DE00E81C929CF6003AADF7 /* OnlyNote */ = {
isa = PBXGroup;
children = (
88A205B21C9BE127009EEFB6 /* helps */,
88DE011C1C929EA1003AADF7 /* Categories */,
88DE011D1C929EA1003AADF7 /* Classes */,
88DE01261C929EA1003AADF7 /* Frameworks */,
69F26DCB1C95C0B8002DA87A /* DataSource */,
69F26DCE1C95C0D1002DA87A /* ThirdPartyLib */,
88DE00EC1C929CF6003AADF7 /* AppDelegate.h */,
88DE00ED1C929CF6003AADF7 /* AppDelegate.m */,
88DE00F21C929CF6003AADF7 /* Main.storyboard */,
88DE00F51C929CF6003AADF7 /* Assets.xcassets */,
88DE00F71C929CF6003AADF7 /* LaunchScreen.storyboard */,
88DE00FA1C929CF6003AADF7 /* Info.plist */,
88DE00E91C929CF6003AADF7 /* Supporting Files */,
);
path = OnlyNote;
sourceTree = "<group>";
};
88DE00E91C929CF6003AADF7 /* Supporting Files */ = {
isa = PBXGroup;
children = (
69F26DFA1C95C10E002DA87A /* PrefixHeader.pch */,
88DE00EA1C929CF6003AADF7 /* main.m */,
889CD0221C968B2500664F83 /* AppMacro.h */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
88DE01021C929CF6003AADF7 /* OnlyNoteTests */ = {
isa = PBXGroup;
children = (
88DE01031C929CF6003AADF7 /* OnlyNoteTests.m */,
88DE01051C929CF6003AADF7 /* Info.plist */,
);
path = OnlyNoteTests;
sourceTree = "<group>";
};
88DE010D1C929CF6003AADF7 /* OnlyNoteUITests */ = {
isa = PBXGroup;
children = (
88DE010E1C929CF6003AADF7 /* OnlyNoteUITests.m */,
88DE01101C929CF6003AADF7 /* Info.plist */,
);
path = OnlyNoteUITests;
sourceTree = "<group>";
};
88DE011C1C929EA1003AADF7 /* Categories */ = {
isa = PBXGroup;
children = (
88DE01431C92B146003AADF7 /* UIColor+Hex.h */,
88DE01441C92B146003AADF7 /* UIColor+Hex.m */,
88DE013D1C92A19D003AADF7 /* UINavigationItem+CustomBackButton.h */,
88DE013E1C92A19D003AADF7 /* UINavigationItem+CustomBackButton.m */,
889CD0301C979CEB00664F83 /* UIImage+Addition.h */,
889CD0311C979CEB00664F83 /* UIImage+Addition.m */,
88A2AE711CA389E300E09AE6 /* UINavigationBar+Awesome.h */,
88A2AE721CA389E300E09AE6 /* UINavigationBar+Awesome.m */,
88F468651CAA1CE3003000CC /* UIView+SHCZExt.h */,
88F468661CAA1CE3003000CC /* UIView+SHCZExt.m */,
);
path = Categories;
sourceTree = "<group>";
};
88DE011D1C929EA1003AADF7 /* Classes */ = {
isa = PBXGroup;
children = (
885075231CA0E83D00FD1B9A /* Edit */,
88DE01481C92C3AD003AADF7 /* login */,
88DE011E1C929EA1003AADF7 /* Home */,
88DE01221C929EA1003AADF7 /* User */,
);
path = Classes;
sourceTree = "<group>";
};
88DE011E1C929EA1003AADF7 /* Home */ = {
isa = PBXGroup;
children = (
88F4686A1CAA2B8D003000CC /* views */,
88DE011F1C929EA1003AADF7 /* Cell */,
88DE01201C929EA1003AADF7 /* Controllers */,
88DE01211C929EA1003AADF7 /* Model */,
);
path = Home;
sourceTree = "<group>";
};
88DE011F1C929EA1003AADF7 /* Cell */ = {
isa = PBXGroup;
children = (
88DE01311C929F54003AADF7 /* MyCollectionViewCell.h */,
88DE01321C929F54003AADF7 /* MyCollectionViewCell.m */,
88DE01331C929F54003AADF7 /* StickCollectionViewFlowLayout.h */,
88DE01341C929F54003AADF7 /* StickCollectionViewFlowLayout.m */,
88E69B1C1CAA746A007EC945 /* LeftViewCell.h */,
88E69B1D1CAA746A007EC945 /* LeftViewCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
88DE01201C929EA1003AADF7 /* Controllers */ = {
isa = PBXGroup;
children = (
88DE01371C929F68003AADF7 /* RNNavigationController.h */,
88DE01381C929F68003AADF7 /* RNNavigationController.m */,
88DE01281C929EF3003AADF7 /* HomeViewController.h */,
88DE01291C929EF3003AADF7 /* HomeViewController.m */,
885075201C9FD04E00FD1B9A /* MainTabbarController.h */,
885075211C9FD04E00FD1B9A /* MainTabbarController.m */,
8895F9881CAA0F2500D8F1D6 /* RootViewController.h */,
8895F9891CAA0F2500D8F1D6 /* RootViewController.m */,
);
path = Controllers;
sourceTree = "<group>";
};
88DE01211C929EA1003AADF7 /* Model */ = {
isa = PBXGroup;
children = (
88A205AB1C9A9A60009EEFB6 /* NoteTabelModel.h */,
88A205AC1C9A9A60009EEFB6 /* NoteTabelModel.m */,
);
path = Model;
sourceTree = "<group>";
};
88DE01221C929EA1003AADF7 /* User */ = {
isa = PBXGroup;
children = (
889CD0341C97BA4600664F83 /* views */,
88DE01231C929EA1003AADF7 /* Cell */,
88DE01241C929EA1003AADF7 /* Controllers */,
88DE01251C929EA1003AADF7 /* Model */,
);
path = User;
sourceTree = "<group>";
};
88DE01231C929EA1003AADF7 /* Cell */ = {
isa = PBXGroup;
children = (
);
path = Cell;
sourceTree = "<group>";
};
88DE01241C929EA1003AADF7 /* Controllers */ = {
isa = PBXGroup;
children = (
88DE013A1C92A0D5003AADF7 /* UserViewController.h */,
88DE013B1C92A0D5003AADF7 /* UserViewController.m */,
88B46EC11C97F09E0074EE4F /* ImageCropViewController.h */,
88B46EC21C97F09E0074EE4F /* ImageCropViewController.m */,
);
path = Controllers;
sourceTree = "<group>";
};
88DE01251C929EA1003AADF7 /* Model */ = {
isa = PBXGroup;
children = (
);
path = Model;
sourceTree = "<group>";
};
88DE01261C929EA1003AADF7 /* Frameworks */ = {
isa = PBXGroup;
children = (
);
path = Frameworks;
sourceTree = "<group>";
};
88DE01481C92C3AD003AADF7 /* login */ = {
isa = PBXGroup;
children = (
29A8E2931C9D921C00D06A93 /* model */,
88DE014D1C92C473003AADF7 /* views */,
88DE01491C92C3AD003AADF7 /* controller */,
);
path = login;
sourceTree = "<group>";
};
88DE01491C92C3AD003AADF7 /* controller */ = {
isa = PBXGroup;
children = (
88DE014A1C92C427003AADF7 /* LoginViewController.h */,
88DE014B1C92C427003AADF7 /* LoginViewController.m */,
889CD0251C96A31500664F83 /* SignUpViewController.h */,
889CD0261C96A31500664F83 /* SignUpViewController.m */,
88B46EC81C994E0E0074EE4F /* EmailCheckViewController.h */,
88B46EC91C994E0E0074EE4F /* EmailCheckViewController.m */,
);
path = controller;
sourceTree = "<group>";
};
88DE014D1C92C473003AADF7 /* views */ = {
isa = PBXGroup;
children = (
88DE014E1C92C49C003AADF7 /* LoginTextfield.h */,
88DE014F1C92C49C003AADF7 /* LoginTextfield.m */,
69F26DF71C95C0EC002DA87A /* LoginFieldView.h */,
69F26DF81C95C0EC002DA87A /* LoginFieldView.m */,
889CD01F1C9667FA00664F83 /* DeformationButton.h */,
889CD0201C9667FA00664F83 /* DeformationButton.m */,
);
path = views;
sourceTree = "<group>";
};
88F4686A1CAA2B8D003000CC /* views */ = {
isa = PBXGroup;
children = (
88F4686B1CAA2BBF003000CC /* LeftListView.h */,
88F4686C1CAA2BBF003000CC /* LeftListView.m */,
);
path = views;
sourceTree = "<group>";
};
F573D056B54A434558AE7BCC /* Pods */ = {
isa = PBXGroup;
children = (
7628CAA3F5C9732D6BAEC015 /* Pods.debug.xcconfig */,
E3C70C264AD1B0374144BD9D /* Pods.release.xcconfig */,
);
name = Pods;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
88DE00E51C929CF6003AADF7 /* OnlyNote */ = {
isa = PBXNativeTarget;
buildConfigurationList = 88DE01131C929CF6003AADF7 /* Build configuration list for PBXNativeTarget "OnlyNote" */;
buildPhases = (
9CAB6FD98E3FEC590E1758A9 /* Check Pods Manifest.lock */,
88DE00E21C929CF6003AADF7 /* Sources */,
88DE00E31C929CF6003AADF7 /* Frameworks */,
88DE00E41C929CF6003AADF7 /* Resources */,
4E909224EBBD6144F0A8B0CE /* Embed Pods Frameworks */,
961A8514CCF89BEF17A52A7F /* Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
);
name = OnlyNote;
productName = OnlyNote;
productReference = 88DE00E61C929CF6003AADF7 /* OnlyNote.app */;
productType = "com.apple.product-type.application";
};
88DE00FE1C929CF6003AADF7 /* OnlyNoteTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 88DE01161C929CF6003AADF7 /* Build configuration list for PBXNativeTarget "OnlyNoteTests" */;
buildPhases = (
88DE00FB1C929CF6003AADF7 /* Sources */,
88DE00FC1C929CF6003AADF7 /* Frameworks */,
88DE00FD1C929CF6003AADF7 /* Resources */,
);
buildRules = (
);
dependencies = (
88DE01011C929CF6003AADF7 /* PBXTargetDependency */,
);
name = OnlyNoteTests;
productName = OnlyNoteTests;
productReference = 88DE00FF1C929CF6003AADF7 /* OnlyNoteTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
88DE01091C929CF6003AADF7 /* OnlyNoteUITests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 88DE01191C929CF6003AADF7 /* Build configuration list for PBXNativeTarget "OnlyNoteUITests" */;
buildPhases = (
88DE01061C929CF6003AADF7 /* Sources */,
88DE01071C929CF6003AADF7 /* Frameworks */,
88DE01081C929CF6003AADF7 /* Resources */,
);
buildRules = (
);
dependencies = (
88DE010C1C929CF6003AADF7 /* PBXTargetDependency */,
);
name = OnlyNoteUITests;
productName = OnlyNoteUITests;
productReference = 88DE010A1C929CF6003AADF7 /* OnlyNoteUITests.xctest */;
productType = "com.apple.product-type.bundle.ui-testing";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
88DE00DE1C929CF6003AADF7 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0710;
ORGANIZATIONNAME = IMac;
TargetAttributes = {
88DE00E51C929CF6003AADF7 = {
CreatedOnToolsVersion = 7.1;
DevelopmentTeam = U353BQ28K8;
};
88DE00FE1C929CF6003AADF7 = {
CreatedOnToolsVersion = 7.1;
TestTargetID = 88DE00E51C929CF6003AADF7;
};
88DE01091C929CF6003AADF7 = {
CreatedOnToolsVersion = 7.1;
TestTargetID = 88DE00E51C929CF6003AADF7;
};
};
};
buildConfigurationList = 88DE00E11C929CF6003AADF7 /* Build configuration list for PBXProject "OnlyNote" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 88DE00DD1C929CF6003AADF7;
productRefGroup = 88DE00E71C929CF6003AADF7 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
88DE00E51C929CF6003AADF7 /* OnlyNote */,
88DE00FE1C929CF6003AADF7 /* OnlyNoteTests */,
88DE01091C929CF6003AADF7 /* OnlyNoteUITests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
88DE00E41C929CF6003AADF7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
69F26E2E1C95C2D6002DA87A /* snowGif.gif in Resources */,
88DE00F91C929CF6003AADF7 /* LaunchScreen.storyboard in Resources */,
889CD02D1C96B23B00664F83 /* bgImage.jpg in Resources */,
69F26DCD1C95C0B8002DA87A /* ProximaNova-Light.otf in Resources */,
885075491CA1358900FD1B9A /* IQKeyboardManager.bundle in Resources */,
88DE00F61C929CF6003AADF7 /* Assets.xcassets in Resources */,
69F26DEC1C95C0D1002DA87A /* Info.plist in Resources */,
88F468691CAA2144003000CC /* sidebar_bg.jpg in Resources */,
8850752E1CA112B000FD1B9A /* LaunchScreen.png in Resources */,
88DE00F41C929CF6003AADF7 /* Main.storyboard in Resources */,
88A205B11C9AA5D9009EEFB6 /* DefaultUserIcon.png in Resources */,
889CD02B1C96AC3800664F83 /* bgImage_blur.jpg in Resources */,
88A205B01C9AA5D9009EEFB6 /* DefaultUserBackground.png in Resources */,
889CD02F1C979B3B00664F83 /* signupBg.JPG in Resources */,
889CD0241C969BA800664F83 /* ProximaNova-Semibold.otf in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
88DE00FD1C929CF6003AADF7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
88DE01081C929CF6003AADF7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
4E909224EBBD6144F0A8B0CE /* Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Embed Pods Frameworks";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
961A8514CCF89BEF17A52A7F /* Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n";
showEnvVarsInLog = 0;
};
9CAB6FD98E3FEC590E1758A9 /* Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Check Pods Manifest.lock";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
88DE00E21C929CF6003AADF7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
889CD0331C97AA5D00664F83 /* ProximaNova-Semibold.otf in Sources */,
69F26E2F1C95C33E002DA87A /* ProximaNova-Light.otf in Sources */,
889CD0371C97BA5D00664F83 /* UserHeaderView.m in Sources */,
88DE013C1C92A0D5003AADF7 /* UserViewController.m in Sources */,
69F26E261C95C173002DA87A /* UIButton+WebCache.m in Sources */,
29A8E2961C9D923200D06A93 /* UserModel.m in Sources */,
69F26E241C95C173002DA87A /* SDWebImageManager.m in Sources */,
88DE00EE1C929CF6003AADF7 /* AppDelegate.m in Sources */,
885075521CA1358900FD1B9A /* UIWindow+Hierarchy.m in Sources */,
69F26DF41C95C0D1002DA87A /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
88DE00EB1C929CF6003AADF7 /* main.m in Sources */,
69F26E221C95C173002DA87A /* SDWebImageDownloader.m in Sources */,
8850754D1CA1358900FD1B9A /* IQTitleBarButtonItem.m in Sources */,
88B46ECA1C994E0E0074EE4F /* EmailCheckViewController.m in Sources */,
69F26DF21C95C0D1002DA87A /* MASViewConstraint.m in Sources */,
69F26E201C95C173002DA87A /* SDWebImageCompat.m in Sources */,
88DE01351C929F54003AADF7 /* MyCollectionViewCell.m in Sources */,
8850754A1CA1358900FD1B9A /* IQKeyboardManager.m in Sources */,
8850754C1CA1358900FD1B9A /* IQTextView.m in Sources */,
88A2AE731CA389E300E09AE6 /* UINavigationBar+Awesome.m in Sources */,
88F468671CAA1CE3003000CC /* UIView+SHCZExt.m in Sources */,
69F26DF51C95C0D1002DA87A /* View+MASAdditions.m in Sources */,
88B46EC31C97F09E0074EE4F /* ImageCropViewController.m in Sources */,
88F4686D1CAA2BBF003000CC /* LeftListView.m in Sources */,
8850752C1CA0EA1300FD1B9A /* EditToolBar.m in Sources */,
88DE013F1C92A19D003AADF7 /* UINavigationItem+CustomBackButton.m in Sources */,
69F26E2C1C95C173002DA87A /* UIView+WebCacheOperation.m in Sources */,
69F26DF11C95C0D1002DA87A /* MASViewAttribute.m in Sources */,
69F26DEF1C95C0D1002DA87A /* MASConstraintMaker.m in Sources */,
69F26E2B1C95C173002DA87A /* UIImageView+WebCache.m in Sources */,
889CD0321C979CEB00664F83 /* UIImage+Addition.m in Sources */,
69F26E291C95C173002DA87A /* UIImage+WebP.m in Sources */,
69F26E1F1C95C173002DA87A /* SDImageCache.m in Sources */,
88DE012A1C929EF3003AADF7 /* HomeViewController.m in Sources */,
88A2AE701CA28A9200E09AE6 /* WZXDateToStrTool.m in Sources */,
8850754E1CA1358900FD1B9A /* IQToolbar.m in Sources */,