-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathR.generated.swift
5365 lines (4730 loc) · 273 KB
/
R.generated.swift
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
//
// This is a generated file, do not edit!
// Generated by R.swift, see https://github.com/mac-cain13/R.swift
//
import Foundation
import Rswift
import UIKit
/// This `R` struct is generated and contains references to static resources.
struct R: Rswift.Validatable {
fileprivate static let applicationLocale = hostingBundle.preferredLocalizations.first.flatMap(Locale.init) ?? Locale.current
fileprivate static let hostingBundle = Bundle(for: R.Class.self)
static func validate() throws {
try intern.validate()
}
/// This `R.clr` struct is generated, and contains static references to 1 color palettes.
/// NOTE: R.clr is deprecated and will be removed in a future R.swift version.
struct clr {
/// This `R.clr.primasColor` struct is generated, and contains static references to 16 colors.
struct primasColor {
/// <span style='background-color: #00000066; color: #FFFFFF; padding: 1px 3px;'>#00000066</span> C66000000
static let c66000000 = Rswift.ColorPaletteItemResource(name: "C66000000", red: 0.0, green: 0.0, blue: 0.0, alpha: 0.400000005960464)
/// <span style='background-color: #000000; color: #FFFFFF; padding: 1px 3px;'>#000000</span> C000000
static let c000000 = Rswift.ColorPaletteItemResource(name: "C000000", red: 0.0, green: 0.0, blue: 0.0, alpha: 1.0)
/// <span style='background-color: #009400; color: #FF6BFF; padding: 1px 3px;'>#009400</span> C3C9E25
static let c3C9E25 = Rswift.ColorPaletteItemResource(name: "C3C9E25", red: 0.0, green: 0.579315721988678, blue: 0.0, alpha: 1.0)
/// <span style='background-color: #262626; color: #D9D9D9; padding: 1px 3px;'>#262626</span> C333333
static let c333333 = Rswift.ColorPaletteItemResource(name: "C333333", red: 0.150545343756676, green: 0.150573566555977, blue: 0.150538399815559, alpha: 1.0)
/// <span style='background-color: #535353; color: #ACACAC; padding: 1px 3px;'>#535353</span> C666666
static let c666666 = Rswift.ColorPaletteItemResource(name: "C666666", red: 0.325808465480804, green: 0.325869560241699, blue: 0.325793385505676, alpha: 1.0)
/// <span style='background-color: #878787; color: #787878; padding: 1px 3px;'>#878787</span> C999999
static let c999999 = Rswift.ColorPaletteItemResource(name: "C999999", red: 0.529585003852844, green: 0.529684245586395, blue: 0.529560506343842, alpha: 1.0)
/// <span style='background-color: #C1C1C1; color: #3E3E3E; padding: 1px 3px;'>#C1C1C1</span> CCCCCC
static let cccccC = Rswift.ColorPaletteItemResource(name: "CCCCCC", red: 0.755501627922058, green: 0.755643248558044, blue: 0.755466759204865, alpha: 1.0)
/// <span style='background-color: #D9DCE0; color: #26231F; padding: 1px 3px;'>#D9DCE0</span> E1E3E6
static let e1E3E6 = Rswift.ColorPaletteItemResource(name: "E1E3E6", red: 0.852165460586548, green: 0.863860905170441, blue: 0.879430592060089, alpha: 1.0)
/// <span style='background-color: #E0E0E0; color: #1F1F1F; padding: 1px 3px;'>#E0E0E0</span> E6E6E6
static let e6E6E6 = Rswift.ColorPaletteItemResource(name: "E6E6E6", red: 0.877956032752991, green: 0.878120601177216, blue: 0.877915441989899, alpha: 1.0)
/// <span style='background-color: #E8EBEF; color: #171410; padding: 1px 3px;'>#E8EBEF</span> EDEFF2
static let edeff2 = Rswift.ColorPaletteItemResource(name: "EDEFF2", red: 0.909777283668518, green: 0.921672463417053, blue: 0.937484920024872, alpha: 1.0)
/// <span style='background-color: #EAEDF6; color: #151209; padding: 1px 3px;'>#EAEDF6</span> EFF1F7
static let eff1F7 = Rswift.ColorPaletteItemResource(name: "EFF1F7", red: 0.919434607028961, green: 0.930836200714111, blue: 0.963300704956055, alpha: 1.0)
/// <span style='background-color: #EAEDF6; color: #151209; padding: 1px 3px;'>#EAEDF6</span> F7F7F7
static let f7F7F7 = Rswift.ColorPaletteItemResource(name: "F7F7F7", red: 0.919434607028961, green: 0.930836200714111, blue: 0.963300704956055, alpha: 1.0)
/// <span style='background-color: #F2F2F2; color: #0D0D0D; padding: 1px 3px;'>#F2F2F2</span> F2F2F2
static let f2F2F2 = Rswift.ColorPaletteItemResource(name: "F2F2F2", red: 0.949019610881805, green: 0.949019610881805, blue: 0.949019610881805, alpha: 1.0)
/// <span style='background-color: #F4F4F4; color: #0B0B0B; padding: 1px 3px;'>#F4F4F4</span> F6F6F6
static let f6F6F6 = Rswift.ColorPaletteItemResource(name: "F6F6F6", red: 0.955649137496948, green: 0.955620527267456, blue: 0.95563679933548, alpha: 1.0)
/// <span style='background-color: #FE2D19; color: #01D2E6; padding: 1px 3px;'>#FE2D19</span> ED5634
static let ed5634 = Rswift.ColorPaletteItemResource(name: "ED5634", red: 0.995791137218475, green: 0.176125690340996, blue: 0.09886234998703, alpha: 1.0)
/// <span style='background-color: #FFFFFFF5; color: #000000; padding: 1px 3px;'>#FFFFFFF5</span> F5FFFFFF
static let f5FFFFFF = Rswift.ColorPaletteItemResource(name: "F5FFFFFF", red: 1.0, green: 1.0, blue: 1.0, alpha: 0.959999978542328)
/// <span style='background-color: #00000066; color: #FFFFFF; padding: 1px 3px;'>#00000066</span> C66000000
///
/// UIColor(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.400000005960464)
static func c66000000(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.400000005960464)
}
/// <span style='background-color: #000000; color: #FFFFFF; padding: 1px 3px;'>#000000</span> C000000
///
/// UIColor(red: 0.0, green: 0.0, blue: 0.0, alpha: 1.0)
static func c000000(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.0, green: 0.0, blue: 0.0, alpha: 1.0)
}
/// <span style='background-color: #009400; color: #FF6BFF; padding: 1px 3px;'>#009400</span> C3C9E25
///
/// UIColor(red: 0.0, green: 0.579315721988678, blue: 0.0, alpha: 1.0)
static func c3C9E25(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.0, green: 0.579315721988678, blue: 0.0, alpha: 1.0)
}
/// <span style='background-color: #262626; color: #D9D9D9; padding: 1px 3px;'>#262626</span> C333333
///
/// UIColor(red: 0.150545343756676, green: 0.150573566555977, blue: 0.150538399815559, alpha: 1.0)
static func c333333(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.150545343756676, green: 0.150573566555977, blue: 0.150538399815559, alpha: 1.0)
}
/// <span style='background-color: #535353; color: #ACACAC; padding: 1px 3px;'>#535353</span> C666666
///
/// UIColor(red: 0.325808465480804, green: 0.325869560241699, blue: 0.325793385505676, alpha: 1.0)
static func c666666(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.325808465480804, green: 0.325869560241699, blue: 0.325793385505676, alpha: 1.0)
}
/// <span style='background-color: #878787; color: #787878; padding: 1px 3px;'>#878787</span> C999999
///
/// UIColor(red: 0.529585003852844, green: 0.529684245586395, blue: 0.529560506343842, alpha: 1.0)
static func c999999(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.529585003852844, green: 0.529684245586395, blue: 0.529560506343842, alpha: 1.0)
}
/// <span style='background-color: #C1C1C1; color: #3E3E3E; padding: 1px 3px;'>#C1C1C1</span> CCCCCC
///
/// UIColor(red: 0.755501627922058, green: 0.755643248558044, blue: 0.755466759204865, alpha: 1.0)
static func cccccC(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.755501627922058, green: 0.755643248558044, blue: 0.755466759204865, alpha: 1.0)
}
/// <span style='background-color: #D9DCE0; color: #26231F; padding: 1px 3px;'>#D9DCE0</span> E1E3E6
///
/// UIColor(red: 0.852165460586548, green: 0.863860905170441, blue: 0.879430592060089, alpha: 1.0)
static func e1E3E6(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.852165460586548, green: 0.863860905170441, blue: 0.879430592060089, alpha: 1.0)
}
/// <span style='background-color: #E0E0E0; color: #1F1F1F; padding: 1px 3px;'>#E0E0E0</span> E6E6E6
///
/// UIColor(red: 0.877956032752991, green: 0.878120601177216, blue: 0.877915441989899, alpha: 1.0)
static func e6E6E6(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.877956032752991, green: 0.878120601177216, blue: 0.877915441989899, alpha: 1.0)
}
/// <span style='background-color: #E8EBEF; color: #171410; padding: 1px 3px;'>#E8EBEF</span> EDEFF2
///
/// UIColor(red: 0.909777283668518, green: 0.921672463417053, blue: 0.937484920024872, alpha: 1.0)
static func edeff2(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.909777283668518, green: 0.921672463417053, blue: 0.937484920024872, alpha: 1.0)
}
/// <span style='background-color: #EAEDF6; color: #151209; padding: 1px 3px;'>#EAEDF6</span> EFF1F7
///
/// UIColor(red: 0.919434607028961, green: 0.930836200714111, blue: 0.963300704956055, alpha: 1.0)
static func eff1F7(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.919434607028961, green: 0.930836200714111, blue: 0.963300704956055, alpha: 1.0)
}
/// <span style='background-color: #EAEDF6; color: #151209; padding: 1px 3px;'>#EAEDF6</span> F7F7F7
///
/// UIColor(red: 0.919434607028961, green: 0.930836200714111, blue: 0.963300704956055, alpha: 1.0)
static func f7F7F7(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.919434607028961, green: 0.930836200714111, blue: 0.963300704956055, alpha: 1.0)
}
/// <span style='background-color: #F2F2F2; color: #0D0D0D; padding: 1px 3px;'>#F2F2F2</span> F2F2F2
///
/// UIColor(red: 0.949019610881805, green: 0.949019610881805, blue: 0.949019610881805, alpha: 1.0)
static func f2F2F2(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.949019610881805, green: 0.949019610881805, blue: 0.949019610881805, alpha: 1.0)
}
/// <span style='background-color: #F4F4F4; color: #0B0B0B; padding: 1px 3px;'>#F4F4F4</span> F6F6F6
///
/// UIColor(red: 0.955649137496948, green: 0.955620527267456, blue: 0.95563679933548, alpha: 1.0)
static func f6F6F6(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.955649137496948, green: 0.955620527267456, blue: 0.95563679933548, alpha: 1.0)
}
/// <span style='background-color: #FE2D19; color: #01D2E6; padding: 1px 3px;'>#FE2D19</span> ED5634
///
/// UIColor(red: 0.995791137218475, green: 0.176125690340996, blue: 0.09886234998703, alpha: 1.0)
static func ed5634(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 0.995791137218475, green: 0.176125690340996, blue: 0.09886234998703, alpha: 1.0)
}
/// <span style='background-color: #FFFFFFF5; color: #000000; padding: 1px 3px;'>#FFFFFFF5</span> F5FFFFFF
///
/// UIColor(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.959999978542328)
static func f5FFFFFF(_: Void = ()) -> UIKit.UIColor {
return UIKit.UIColor(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.959999978542328)
}
fileprivate init() {}
}
fileprivate init() {}
}
/// This `R.color` struct is generated, and contains static references to 0 colors.
struct color {
fileprivate init() {}
}
/// This `R.file` struct is generated, and contains static references to 4 files.
struct file {
/// Resource file `LanguageCode.plist`.
static let languageCodePlist = Rswift.FileResource(bundle: R.hostingBundle, name: "LanguageCode", pathExtension: "plist")
/// Resource file `LanguageName.plist`.
static let languageNamePlist = Rswift.FileResource(bundle: R.hostingBundle, name: "LanguageName", pathExtension: "plist")
/// Resource file `PrimasColor.clr`.
static let primasColorClr = Rswift.FileResource(bundle: R.hostingBundle, name: "PrimasColor", pathExtension: "clr")
/// Resource file `帮助中心.pdf`.
static let 帮助中心Pdf = Rswift.FileResource(bundle: R.hostingBundle, name: "帮助中心", pathExtension: "pdf")
/// `bundle.url(forResource: "LanguageCode", withExtension: "plist")`
static func languageCodePlist(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.languageCodePlist
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "LanguageName", withExtension: "plist")`
static func languageNamePlist(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.languageNamePlist
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "PrimasColor", withExtension: "clr")`
static func primasColorClr(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.primasColorClr
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "帮助中心", withExtension: "pdf")`
static func 帮助中心Pdf(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.帮助中心Pdf
return fileResource.bundle.url(forResource: fileResource)
}
fileprivate init() {}
}
/// This `R.font` struct is generated, and contains static references to 0 fonts.
struct font {
fileprivate init() {}
}
/// This `R.image` struct is generated, and contains static references to 133 images.
struct image {
/// Image `arrow_left_on`.
static let arrow_left_on = Rswift.ImageResource(bundle: R.hostingBundle, name: "arrow_left_on")
/// Image `arrow_left_w_on`.
static let arrow_left_w_on = Rswift.ImageResource(bundle: R.hostingBundle, name: "arrow_left_w_on")
/// Image `arrow_left_w`.
static let arrow_left_w = Rswift.ImageResource(bundle: R.hostingBundle, name: "arrow_left_w")
/// Image `arrow_left`.
static let arrow_left = Rswift.ImageResource(bundle: R.hostingBundle, name: "arrow_left")
/// Image `back`.
static let back = Rswift.ImageResource(bundle: R.hostingBundle, name: "back")
/// Image `bangzhu`.
static let bangzhu = Rswift.ImageResource(bundle: R.hostingBundle, name: "bangzhu")
/// Image `beifen`.
static let beifen = Rswift.ImageResource(bundle: R.hostingBundle, name: "beifen")
/// Image `chenggong_bg`.
static let chenggong_bg = Rswift.ImageResource(bundle: R.hostingBundle, name: "chenggong_bg")
/// Image `choosen`.
static let choosen = Rswift.ImageResource(bundle: R.hostingBundle, name: "choosen")
/// Image `chuangjianchengg`.
static let chuangjianchengg = Rswift.ImageResource(bundle: R.hostingBundle, name: "chuangjianchengg")
/// Image `dadianzan`.
static let dadianzan = Rswift.ImageResource(bundle: R.hostingBundle, name: "dadianzan")
/// Image `dahuifu`.
static let dahuifu = Rswift.ImageResource(bundle: R.hostingBundle, name: "dahuifu")
/// Image `dazhuanfa`.
static let dazhuanfa = Rswift.ImageResource(bundle: R.hostingBundle, name: "dazhuanfa")
/// Image `delete_icon`.
static let delete_icon = Rswift.ImageResource(bundle: R.hostingBundle, name: "delete_icon")
/// Image `denglubeijing`.
static let denglubeijing = Rswift.ImageResource(bundle: R.hostingBundle, name: "denglubeijing")
/// Image `dengluguanbi`.
static let dengluguanbi = Rswift.ImageResource(bundle: R.hostingBundle, name: "dengluguanbi")
/// Image `dianzan_1`.
static let dianzan_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "dianzan_1")
/// Image `dianzan_dian`.
static let dianzan_dian = Rswift.ImageResource(bundle: R.hostingBundle, name: "dianzan_dian")
/// Image `dianzan`.
static let dianzan = Rswift.ImageResource(bundle: R.hostingBundle, name: "dianzan")
/// Image `empty_icon`.
static let empty_icon = Rswift.ImageResource(bundle: R.hostingBundle, name: "empty_icon")
/// Image `enter`.
static let enter = Rswift.ImageResource(bundle: R.hostingBundle, name: "enter")
/// Image `fabu`.
static let fabu = Rswift.ImageResource(bundle: R.hostingBundle, name: "fabu")
/// Image `gou`.
static let gou = Rswift.ImageResource(bundle: R.hostingBundle, name: "gou")
/// Image `group_bg`.
static let group_bg = Rswift.ImageResource(bundle: R.hostingBundle, name: "group_bg")
/// Image `guanbi_2`.
static let guanbi_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "guanbi_2")
/// Image `guanbi_3`.
static let guanbi_3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "guanbi_3")
/// Image `guanbi_red`.
static let guanbi_red = Rswift.ImageResource(bundle: R.hostingBundle, name: "guanbi_red")
/// Image `guanbi`.
static let guanbi = Rswift.ImageResource(bundle: R.hostingBundle, name: "guanbi")
/// Image `guanyuwomen`.
static let guanyuwomen = Rswift.ImageResource(bundle: R.hostingBundle, name: "guanyuwomen")
/// Image `huanyipi`.
static let huanyipi = Rswift.ImageResource(bundle: R.hostingBundle, name: "huanyipi")
/// Image `huifu`.
static let huifu = Rswift.ImageResource(bundle: R.hostingBundle, name: "huifu")
/// Image `item_more`.
static let item_more = Rswift.ImageResource(bundle: R.hostingBundle, name: "item_more")
/// Image `jianpan_xia`.
static let jianpan_xia = Rswift.ImageResource(bundle: R.hostingBundle, name: "jianpan_xia")
/// Image `jianpan`.
static let jianpan = Rswift.ImageResource(bundle: R.hostingBundle, name: "jianpan")
/// Image `jiazhi_1`.
static let jiazhi_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "jiazhi_1")
/// Image `jiazhi`.
static let jiazhi = Rswift.ImageResource(bundle: R.hostingBundle, name: "jiazhi")
/// Image `jingtan`.
static let jingtan = Rswift.ImageResource(bundle: R.hostingBundle, name: "jingtan")
/// Image `laba`.
static let laba = Rswift.ImageResource(bundle: R.hostingBundle, name: "laba")
/// Image `logoX`.
static let logoX = Rswift.ImageResource(bundle: R.hostingBundle, name: "logoX")
/// Image `logo_big`.
static let logo_big = Rswift.ImageResource(bundle: R.hostingBundle, name: "logo_big")
/// Image `logo`.
static let logo = Rswift.ImageResource(bundle: R.hostingBundle, name: "logo")
/// Image `member_more`.
static let member_more = Rswift.ImageResource(bundle: R.hostingBundle, name: "member_more")
/// Image `middle`.
static let middle = Rswift.ImageResource(bundle: R.hostingBundle, name: "middle")
/// Image `mine_bg`.
static let mine_bg = Rswift.ImageResource(bundle: R.hostingBundle, name: "mine_bg")
/// Image `mine_setting`.
static let mine_setting = Rswift.ImageResource(bundle: R.hostingBundle, name: "mine_setting")
/// Image `ok`.
static let ok = Rswift.ImageResource(bundle: R.hostingBundle, name: "ok")
/// Image `pic_10`.
static let pic_10 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_10")
/// Image `pic_11`.
static let pic_11 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_11")
/// Image `pic_12`.
static let pic_12 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_12")
/// Image `pic_13`.
static let pic_13 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_13")
/// Image `pic_14`.
static let pic_14 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_14")
/// Image `pic_15`.
static let pic_15 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_15")
/// Image `pic_16`.
static let pic_16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_16")
/// Image `pic_17`.
static let pic_17 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_17")
/// Image `pic_18`.
static let pic_18 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_18")
/// Image `pic_19`.
static let pic_19 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_19")
/// Image `pic_1`.
static let pic_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_1")
/// Image `pic_20`.
static let pic_20 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_20")
/// Image `pic_2`.
static let pic_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_2")
/// Image `pic_3`.
static let pic_3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_3")
/// Image `pic_4`.
static let pic_4 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_4")
/// Image `pic_5`.
static let pic_5 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_5")
/// Image `pic_6`.
static let pic_6 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_6")
/// Image `pic_7`.
static let pic_7 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_7")
/// Image `pic_8`.
static let pic_8 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_8")
/// Image `pic_9`.
static let pic_9 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pic_9")
/// Image `pinglun_1`.
static let pinglun_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "pinglun_1")
/// Image `pinglun`.
static let pinglun = Rswift.ImageResource(bundle: R.hostingBundle, name: "pinglun")
/// Image `portrait`.
static let portrait = Rswift.ImageResource(bundle: R.hostingBundle, name: "portrait")
/// Image `qidongye`.
static let qidongye = Rswift.ImageResource(bundle: R.hostingBundle, name: "qidongye")
/// Image `quchuangjian`.
static let quchuangjian = Rswift.ImageResource(bundle: R.hostingBundle, name: "quchuangjian")
/// Image `quexun_1`.
static let quexun_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "quexun_1")
/// Image `qufabu`.
static let qufabu = Rswift.ImageResource(bundle: R.hostingBundle, name: "qufabu")
/// Image `sanjiao`.
static let sanjiao = Rswift.ImageResource(bundle: R.hostingBundle, name: "sanjiao")
/// Image `search`.
static let search = Rswift.ImageResource(bundle: R.hostingBundle, name: "search")
/// Image `shequn_1`.
static let shequn_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "shequn_1")
/// Image `shequn`.
static let shequn = Rswift.ImageResource(bundle: R.hostingBundle, name: "shequn")
/// Image `shezhi`.
static let shezhi = Rswift.ImageResource(bundle: R.hostingBundle, name: "shezhi")
/// Image `shouye_1`.
static let shouye_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "shouye_1")
/// Image `shouye`.
static let shouye = Rswift.ImageResource(bundle: R.hostingBundle, name: "shouye")
/// Image `shouyi`.
static let shouyi = Rswift.ImageResource(bundle: R.hostingBundle, name: "shouyi")
/// Image `strong`.
static let strong = Rswift.ImageResource(bundle: R.hostingBundle, name: "strong")
/// Image `suoding`.
static let suoding = Rswift.ImageResource(bundle: R.hostingBundle, name: "suoding")
/// Image `touxiang_10`.
static let touxiang_10 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_10")
/// Image `touxiang_11`.
static let touxiang_11 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_11")
/// Image `touxiang_12`.
static let touxiang_12 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_12")
/// Image `touxiang_13`.
static let touxiang_13 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_13")
/// Image `touxiang_14`.
static let touxiang_14 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_14")
/// Image `touxiang_15`.
static let touxiang_15 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_15")
/// Image `touxiang_16`.
static let touxiang_16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_16")
/// Image `touxiang_17`.
static let touxiang_17 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_17")
/// Image `touxiang_18`.
static let touxiang_18 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_18")
/// Image `touxiang_19`.
static let touxiang_19 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_19")
/// Image `touxiang_1`.
static let touxiang_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_1")
/// Image `touxiang_20`.
static let touxiang_20 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_20")
/// Image `touxiang_21`.
static let touxiang_21 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_21")
/// Image `touxiang_22`.
static let touxiang_22 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_22")
/// Image `touxiang_2`.
static let touxiang_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_2")
/// Image `touxiang_3`.
static let touxiang_3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_3")
/// Image `touxiang_4`.
static let touxiang_4 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_4")
/// Image `touxiang_5`.
static let touxiang_5 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_5")
/// Image `touxiang_6`.
static let touxiang_6 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_6")
/// Image `touxiang_7`.
static let touxiang_7 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_7")
/// Image `touxiang_8`.
static let touxiang_8 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_8")
/// Image `touxiang_9`.
static let touxiang_9 = Rswift.ImageResource(bundle: R.hostingBundle, name: "touxiang_9")
/// Image `tuichu`.
static let tuichu = Rswift.ImageResource(bundle: R.hostingBundle, name: "tuichu")
/// Image `update_icon`.
static let update_icon = Rswift.ImageResource(bundle: R.hostingBundle, name: "update_icon")
/// Image `userLogo`.
static let userLogo = Rswift.ImageResource(bundle: R.hostingBundle, name: "userLogo")
/// Image `weak`.
static let weak = Rswift.ImageResource(bundle: R.hostingBundle, name: "weak")
/// Image `weixuanze`.
static let weixuanze = Rswift.ImageResource(bundle: R.hostingBundle, name: "weixuanze")
/// Image `wode_1`.
static let wode_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "wode_1")
/// Image `wode`.
static let wode = Rswift.ImageResource(bundle: R.hostingBundle, name: "wode")
/// Image `xiangce`.
static let xiangce = Rswift.ImageResource(bundle: R.hostingBundle, name: "xiangce")
/// Image `xiangji2`.
static let xiangji2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "xiangji2")
/// Image `xiangji`.
static let xiangji = Rswift.ImageResource(bundle: R.hostingBundle, name: "xiangji")
/// Image `xiaohao`.
static let xiaohao = Rswift.ImageResource(bundle: R.hostingBundle, name: "xiaohao")
/// Image `xieyi3`.
static let xieyi3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "xieyi3")
/// Image `xieyi_1`.
static let xieyi_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "xieyi_1")
/// Image `xieyi_2`.
static let xieyi_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "xieyi_2")
/// Image `xuanze`.
static let xuanze = Rswift.ImageResource(bundle: R.hostingBundle, name: "xuanze")
/// Image `zanwuguanzhu`.
static let zanwuguanzhu = Rswift.ImageResource(bundle: R.hostingBundle, name: "zanwuguanzhu")
/// Image `zanwupinglun-1`.
static let zanwupinglun1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "zanwupinglun-1")
/// Image `zanwupinglun`.
static let zanwupinglun = Rswift.ImageResource(bundle: R.hostingBundle, name: "zanwupinglun")
/// Image `zanwushuju`.
static let zanwushuju = Rswift.ImageResource(bundle: R.hostingBundle, name: "zanwushuju")
/// Image `zhuanfa_1`.
static let zhuanfa_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "zhuanfa_1")
/// Image `zhuanfa`.
static let zhuanfa = Rswift.ImageResource(bundle: R.hostingBundle, name: "zhuanfa")
/// Image `zhuanzai`.
static let zhuanzai = Rswift.ImageResource(bundle: R.hostingBundle, name: "zhuanzai")
/// Image `回复`.
static let 回复 = Rswift.ImageResource(bundle: R.hostingBundle, name: "回复")
/// Image `点赞`.
static let 点赞 = Rswift.ImageResource(bundle: R.hostingBundle, name: "点赞")
/// Image `组33`.
static let 组33 = Rswift.ImageResource(bundle: R.hostingBundle, name: "组33")
/// Image `组36`.
static let 组36 = Rswift.ImageResource(bundle: R.hostingBundle, name: "组36")
/// Image `转发`.
static let 转发 = Rswift.ImageResource(bundle: R.hostingBundle, name: "转发")
/// Image `转载`.
static let 转载 = Rswift.ImageResource(bundle: R.hostingBundle, name: "转载")
/// `UIImage(named: "arrow_left", bundle: ..., traitCollection: ...)`
static func arrow_left(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.arrow_left, compatibleWith: traitCollection)
}
/// `UIImage(named: "arrow_left_on", bundle: ..., traitCollection: ...)`
static func arrow_left_on(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.arrow_left_on, compatibleWith: traitCollection)
}
/// `UIImage(named: "arrow_left_w", bundle: ..., traitCollection: ...)`
static func arrow_left_w(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.arrow_left_w, compatibleWith: traitCollection)
}
/// `UIImage(named: "arrow_left_w_on", bundle: ..., traitCollection: ...)`
static func arrow_left_w_on(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.arrow_left_w_on, compatibleWith: traitCollection)
}
/// `UIImage(named: "back", bundle: ..., traitCollection: ...)`
static func back(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.back, compatibleWith: traitCollection)
}
/// `UIImage(named: "bangzhu", bundle: ..., traitCollection: ...)`
static func bangzhu(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.bangzhu, compatibleWith: traitCollection)
}
/// `UIImage(named: "beifen", bundle: ..., traitCollection: ...)`
static func beifen(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.beifen, compatibleWith: traitCollection)
}
/// `UIImage(named: "chenggong_bg", bundle: ..., traitCollection: ...)`
static func chenggong_bg(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.chenggong_bg, compatibleWith: traitCollection)
}
/// `UIImage(named: "choosen", bundle: ..., traitCollection: ...)`
static func choosen(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.choosen, compatibleWith: traitCollection)
}
/// `UIImage(named: "chuangjianchengg", bundle: ..., traitCollection: ...)`
static func chuangjianchengg(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.chuangjianchengg, compatibleWith: traitCollection)
}
/// `UIImage(named: "dadianzan", bundle: ..., traitCollection: ...)`
static func dadianzan(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.dadianzan, compatibleWith: traitCollection)
}
/// `UIImage(named: "dahuifu", bundle: ..., traitCollection: ...)`
static func dahuifu(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.dahuifu, compatibleWith: traitCollection)
}
/// `UIImage(named: "dazhuanfa", bundle: ..., traitCollection: ...)`
static func dazhuanfa(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.dazhuanfa, compatibleWith: traitCollection)
}
/// `UIImage(named: "delete_icon", bundle: ..., traitCollection: ...)`
static func delete_icon(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.delete_icon, compatibleWith: traitCollection)
}
/// `UIImage(named: "denglubeijing", bundle: ..., traitCollection: ...)`
static func denglubeijing(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.denglubeijing, compatibleWith: traitCollection)
}
/// `UIImage(named: "dengluguanbi", bundle: ..., traitCollection: ...)`
static func dengluguanbi(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.dengluguanbi, compatibleWith: traitCollection)
}
/// `UIImage(named: "dianzan", bundle: ..., traitCollection: ...)`
static func dianzan(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.dianzan, compatibleWith: traitCollection)
}
/// `UIImage(named: "dianzan_1", bundle: ..., traitCollection: ...)`
static func dianzan_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.dianzan_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "dianzan_dian", bundle: ..., traitCollection: ...)`
static func dianzan_dian(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.dianzan_dian, compatibleWith: traitCollection)
}
/// `UIImage(named: "empty_icon", bundle: ..., traitCollection: ...)`
static func empty_icon(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.empty_icon, compatibleWith: traitCollection)
}
/// `UIImage(named: "enter", bundle: ..., traitCollection: ...)`
static func enter(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.enter, compatibleWith: traitCollection)
}
/// `UIImage(named: "fabu", bundle: ..., traitCollection: ...)`
static func fabu(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.fabu, compatibleWith: traitCollection)
}
/// `UIImage(named: "gou", bundle: ..., traitCollection: ...)`
static func gou(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.gou, compatibleWith: traitCollection)
}
/// `UIImage(named: "group_bg", bundle: ..., traitCollection: ...)`
static func group_bg(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.group_bg, compatibleWith: traitCollection)
}
/// `UIImage(named: "guanbi", bundle: ..., traitCollection: ...)`
static func guanbi(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.guanbi, compatibleWith: traitCollection)
}
/// `UIImage(named: "guanbi_2", bundle: ..., traitCollection: ...)`
static func guanbi_2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.guanbi_2, compatibleWith: traitCollection)
}
/// `UIImage(named: "guanbi_3", bundle: ..., traitCollection: ...)`
static func guanbi_3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.guanbi_3, compatibleWith: traitCollection)
}
/// `UIImage(named: "guanbi_red", bundle: ..., traitCollection: ...)`
static func guanbi_red(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.guanbi_red, compatibleWith: traitCollection)
}
/// `UIImage(named: "guanyuwomen", bundle: ..., traitCollection: ...)`
static func guanyuwomen(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.guanyuwomen, compatibleWith: traitCollection)
}
/// `UIImage(named: "huanyipi", bundle: ..., traitCollection: ...)`
static func huanyipi(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.huanyipi, compatibleWith: traitCollection)
}
/// `UIImage(named: "huifu", bundle: ..., traitCollection: ...)`
static func huifu(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.huifu, compatibleWith: traitCollection)
}
/// `UIImage(named: "item_more", bundle: ..., traitCollection: ...)`
static func item_more(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.item_more, compatibleWith: traitCollection)
}
/// `UIImage(named: "jianpan", bundle: ..., traitCollection: ...)`
static func jianpan(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.jianpan, compatibleWith: traitCollection)
}
/// `UIImage(named: "jianpan_xia", bundle: ..., traitCollection: ...)`
static func jianpan_xia(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.jianpan_xia, compatibleWith: traitCollection)
}
/// `UIImage(named: "jiazhi", bundle: ..., traitCollection: ...)`
static func jiazhi(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.jiazhi, compatibleWith: traitCollection)
}
/// `UIImage(named: "jiazhi_1", bundle: ..., traitCollection: ...)`
static func jiazhi_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.jiazhi_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "jingtan", bundle: ..., traitCollection: ...)`
static func jingtan(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.jingtan, compatibleWith: traitCollection)
}
/// `UIImage(named: "laba", bundle: ..., traitCollection: ...)`
static func laba(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.laba, compatibleWith: traitCollection)
}
/// `UIImage(named: "logo", bundle: ..., traitCollection: ...)`
static func logo(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.logo, compatibleWith: traitCollection)
}
/// `UIImage(named: "logoX", bundle: ..., traitCollection: ...)`
static func logoX(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.logoX, compatibleWith: traitCollection)
}
/// `UIImage(named: "logo_big", bundle: ..., traitCollection: ...)`
static func logo_big(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.logo_big, compatibleWith: traitCollection)
}
/// `UIImage(named: "member_more", bundle: ..., traitCollection: ...)`
static func member_more(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.member_more, compatibleWith: traitCollection)
}
/// `UIImage(named: "middle", bundle: ..., traitCollection: ...)`
static func middle(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.middle, compatibleWith: traitCollection)
}
/// `UIImage(named: "mine_bg", bundle: ..., traitCollection: ...)`
static func mine_bg(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.mine_bg, compatibleWith: traitCollection)
}
/// `UIImage(named: "mine_setting", bundle: ..., traitCollection: ...)`
static func mine_setting(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.mine_setting, compatibleWith: traitCollection)
}
/// `UIImage(named: "ok", bundle: ..., traitCollection: ...)`
static func ok(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.ok, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_1", bundle: ..., traitCollection: ...)`
static func pic_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_10", bundle: ..., traitCollection: ...)`
static func pic_10(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_10, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_11", bundle: ..., traitCollection: ...)`
static func pic_11(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_11, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_12", bundle: ..., traitCollection: ...)`
static func pic_12(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_12, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_13", bundle: ..., traitCollection: ...)`
static func pic_13(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_13, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_14", bundle: ..., traitCollection: ...)`
static func pic_14(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_14, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_15", bundle: ..., traitCollection: ...)`
static func pic_15(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_15, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_16", bundle: ..., traitCollection: ...)`
static func pic_16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_16, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_17", bundle: ..., traitCollection: ...)`
static func pic_17(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_17, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_18", bundle: ..., traitCollection: ...)`
static func pic_18(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_18, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_19", bundle: ..., traitCollection: ...)`
static func pic_19(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_19, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_2", bundle: ..., traitCollection: ...)`
static func pic_2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_2, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_20", bundle: ..., traitCollection: ...)`
static func pic_20(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_20, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_3", bundle: ..., traitCollection: ...)`
static func pic_3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_3, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_4", bundle: ..., traitCollection: ...)`
static func pic_4(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_4, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_5", bundle: ..., traitCollection: ...)`
static func pic_5(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_5, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_6", bundle: ..., traitCollection: ...)`
static func pic_6(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_6, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_7", bundle: ..., traitCollection: ...)`
static func pic_7(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_7, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_8", bundle: ..., traitCollection: ...)`
static func pic_8(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_8, compatibleWith: traitCollection)
}
/// `UIImage(named: "pic_9", bundle: ..., traitCollection: ...)`
static func pic_9(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pic_9, compatibleWith: traitCollection)
}
/// `UIImage(named: "pinglun", bundle: ..., traitCollection: ...)`
static func pinglun(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pinglun, compatibleWith: traitCollection)
}
/// `UIImage(named: "pinglun_1", bundle: ..., traitCollection: ...)`
static func pinglun_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.pinglun_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "portrait", bundle: ..., traitCollection: ...)`
static func portrait(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.portrait, compatibleWith: traitCollection)
}
/// `UIImage(named: "qidongye", bundle: ..., traitCollection: ...)`
static func qidongye(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.qidongye, compatibleWith: traitCollection)
}
/// `UIImage(named: "quchuangjian", bundle: ..., traitCollection: ...)`
static func quchuangjian(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.quchuangjian, compatibleWith: traitCollection)
}
/// `UIImage(named: "quexun_1", bundle: ..., traitCollection: ...)`
static func quexun_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.quexun_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "qufabu", bundle: ..., traitCollection: ...)`
static func qufabu(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.qufabu, compatibleWith: traitCollection)
}
/// `UIImage(named: "sanjiao", bundle: ..., traitCollection: ...)`
static func sanjiao(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sanjiao, compatibleWith: traitCollection)
}
/// `UIImage(named: "search", bundle: ..., traitCollection: ...)`
static func search(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.search, compatibleWith: traitCollection)
}
/// `UIImage(named: "shequn", bundle: ..., traitCollection: ...)`
static func shequn(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.shequn, compatibleWith: traitCollection)
}
/// `UIImage(named: "shequn_1", bundle: ..., traitCollection: ...)`
static func shequn_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.shequn_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "shezhi", bundle: ..., traitCollection: ...)`
static func shezhi(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.shezhi, compatibleWith: traitCollection)
}
/// `UIImage(named: "shouye", bundle: ..., traitCollection: ...)`
static func shouye(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.shouye, compatibleWith: traitCollection)
}
/// `UIImage(named: "shouye_1", bundle: ..., traitCollection: ...)`
static func shouye_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.shouye_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "shouyi", bundle: ..., traitCollection: ...)`
static func shouyi(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.shouyi, compatibleWith: traitCollection)
}
/// `UIImage(named: "strong", bundle: ..., traitCollection: ...)`
static func strong(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.strong, compatibleWith: traitCollection)
}
/// `UIImage(named: "suoding", bundle: ..., traitCollection: ...)`
static func suoding(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.suoding, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_1", bundle: ..., traitCollection: ...)`
static func touxiang_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_1, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_10", bundle: ..., traitCollection: ...)`
static func touxiang_10(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_10, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_11", bundle: ..., traitCollection: ...)`
static func touxiang_11(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_11, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_12", bundle: ..., traitCollection: ...)`
static func touxiang_12(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_12, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_13", bundle: ..., traitCollection: ...)`
static func touxiang_13(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_13, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_14", bundle: ..., traitCollection: ...)`
static func touxiang_14(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_14, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_15", bundle: ..., traitCollection: ...)`
static func touxiang_15(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_15, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_16", bundle: ..., traitCollection: ...)`
static func touxiang_16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_16, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_17", bundle: ..., traitCollection: ...)`
static func touxiang_17(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_17, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_18", bundle: ..., traitCollection: ...)`
static func touxiang_18(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_18, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_19", bundle: ..., traitCollection: ...)`
static func touxiang_19(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_19, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_2", bundle: ..., traitCollection: ...)`
static func touxiang_2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_2, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_20", bundle: ..., traitCollection: ...)`
static func touxiang_20(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_20, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_21", bundle: ..., traitCollection: ...)`
static func touxiang_21(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_21, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_22", bundle: ..., traitCollection: ...)`
static func touxiang_22(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_22, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_3", bundle: ..., traitCollection: ...)`
static func touxiang_3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_3, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_4", bundle: ..., traitCollection: ...)`
static func touxiang_4(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_4, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_5", bundle: ..., traitCollection: ...)`
static func touxiang_5(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_5, compatibleWith: traitCollection)
}
/// `UIImage(named: "touxiang_6", bundle: ..., traitCollection: ...)`
static func touxiang_6(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.touxiang_6, compatibleWith: traitCollection)
}