-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathR.generated.swift
856 lines (749 loc) · 41.2 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
//
// 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(identifier: $0) } ?? Locale.current
fileprivate static let hostingBundle = Bundle(for: R.Class.self)
/// Find first language and bundle for which the table exists
fileprivate static func localeBundle(tableName: String, preferredLanguages: [String]) -> (Foundation.Locale, Foundation.Bundle)? {
// Filter preferredLanguages to localizations, use first locale
var languages = preferredLanguages
.map { Locale(identifier: $0) }
.prefix(1)
.flatMap { locale -> [String] in
if hostingBundle.localizations.contains(locale.identifier) {
if let language = locale.languageCode, hostingBundle.localizations.contains(language) {
return [locale.identifier, language]
} else {
return [locale.identifier]
}
} else if let language = locale.languageCode, hostingBundle.localizations.contains(language) {
return [language]
} else {
return []
}
}
// If there's no languages, use development language as backstop
if languages.isEmpty {
if let developmentLocalization = hostingBundle.developmentLocalization {
languages = [developmentLocalization]
}
} else {
// Insert Base as second item (between locale identifier and languageCode)
languages.insert("Base", at: 1)
// Add development language as backstop
if let developmentLocalization = hostingBundle.developmentLocalization {
languages.append(developmentLocalization)
}
}
// Find first language for which table exists
// Note: key might not exist in chosen language (in that case, key will be shown)
for language in languages {
if let lproj = hostingBundle.url(forResource: language, withExtension: "lproj"),
let lbundle = Bundle(url: lproj)
{
let strings = lbundle.url(forResource: tableName, withExtension: "strings")
let stringsdict = lbundle.url(forResource: tableName, withExtension: "stringsdict")
if strings != nil || stringsdict != nil {
return (Locale(identifier: language), lbundle)
}
}
}
// If table is available in main bundle, don't look for localized resources
let strings = hostingBundle.url(forResource: tableName, withExtension: "strings", subdirectory: nil, localization: nil)
let stringsdict = hostingBundle.url(forResource: tableName, withExtension: "stringsdict", subdirectory: nil, localization: nil)
if strings != nil || stringsdict != nil {
return (applicationLocale, hostingBundle)
}
// If table is not found for requested languages, key will be shown
return nil
}
/// Load string from Info.plist file
fileprivate static func infoPlistString(path: [String], key: String) -> String? {
var dict = hostingBundle.infoDictionary
for step in path {
guard let obj = dict?[step] as? [String: Any] else { return nil }
dict = obj
}
return dict?[key] as? String
}
static func validate() throws {
try intern.validate()
}
#if os(iOS) || os(tvOS)
/// This `R.storyboard` struct is generated, and contains static references to 1 storyboards.
struct storyboard {
/// Storyboard `LaunchScreen`.
static let launchScreen = _R.storyboard.launchScreen()
#if os(iOS) || os(tvOS)
/// `UIStoryboard(name: "LaunchScreen", bundle: ...)`
static func launchScreen(_: Void = ()) -> UIKit.UIStoryboard {
return UIKit.UIStoryboard(resource: R.storyboard.launchScreen)
}
#endif
fileprivate init() {}
}
#endif
/// This `R.color` struct is generated, and contains static references to 1 colors.
struct color {
/// Color `AccentColor`.
static let accentColor = Rswift.ColorResource(bundle: R.hostingBundle, name: "AccentColor")
#if os(iOS) || os(tvOS)
/// `UIColor(named: "AccentColor", bundle: ..., traitCollection: ...)`
@available(tvOS 11.0, *)
@available(iOS 11.0, *)
static func accentColor(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIColor? {
return UIKit.UIColor(resource: R.color.accentColor, compatibleWith: traitCollection)
}
#endif
#if os(watchOS)
/// `UIColor(named: "AccentColor", bundle: ..., traitCollection: ...)`
@available(watchOSApplicationExtension 4.0, *)
static func accentColor(_: Void = ()) -> UIKit.UIColor? {
return UIKit.UIColor(named: R.color.accentColor.name)
}
#endif
fileprivate init() {}
}
/// This `R.image` struct is generated, and contains static references to 74 images.
struct image {
/// Image `banner_dot_selected`.
static let banner_dot_selected = Rswift.ImageResource(bundle: R.hostingBundle, name: "banner_dot_selected")
/// Image `banner_dot`.
static let banner_dot = Rswift.ImageResource(bundle: R.hostingBundle, name: "banner_dot")
/// Image `bg_comic_gray_mask`.
static let bg_comic_gray_mask = Rswift.ImageResource(bundle: R.hostingBundle, name: "bg_comic_gray_mask")
/// Image `bg_comment_separator`.
static let bg_comment_separator = Rswift.ImageResource(bundle: R.hostingBundle, name: "bg_comment_separator")
/// Image `bg_find_comic_nav`.
static let bg_find_comic_nav = Rswift.ImageResource(bundle: R.hostingBundle, name: "bg_find_comic_nav")
/// Image `bg_find_comic_top`.
static let bg_find_comic_top = Rswift.ImageResource(bundle: R.hostingBundle, name: "bg_find_comic_top")
/// Image `bg_tab_line`.
static let bg_tab_line = Rswift.ImageResource(bundle: R.hostingBundle, name: "bg_tab_line")
/// Image `find_comic_nav_cate_down`.
static let find_comic_nav_cate_down = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_cate_down")
/// Image `find_comic_nav_cate_up`.
static let find_comic_nav_cate_up = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_cate_up")
/// Image `find_comic_nav_pay_down`.
static let find_comic_nav_pay_down = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_pay_down")
/// Image `find_comic_nav_pay_up`.
static let find_comic_nav_pay_up = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_pay_up")
/// Image `find_comic_nav_rank_down`.
static let find_comic_nav_rank_down = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_rank_down")
/// Image `find_comic_nav_rank_up`.
static let find_comic_nav_rank_up = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_rank_up")
/// Image `find_comic_nav_search_down`.
static let find_comic_nav_search_down = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_search_down")
/// Image `find_comic_nav_search_up`.
static let find_comic_nav_search_up = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_search_up")
/// Image `find_comic_nav_vip_down`.
static let find_comic_nav_vip_down = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_vip_down")
/// Image `find_comic_nav_vip_up`.
static let find_comic_nav_vip_up = Rswift.ImageResource(bundle: R.hostingBundle, name: "find_comic_nav_vip_up")
/// Image `icon_comic_camera`.
static let icon_comic_camera = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_camera")
/// Image `icon_comic_collect`.
static let icon_comic_collect = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_collect")
/// Image `icon_comic_forum_like`.
static let icon_comic_forum_like = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_forum_like")
/// Image `icon_comic_hot`.
static let icon_comic_hot = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_hot")
/// Image `icon_comic_info_more`.
static let icon_comic_info_more = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_info_more")
/// Image `icon_comic_new_chapter`.
static let icon_comic_new_chapter = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_new_chapter")
/// Image `icon_comic_reward_1`.
static let icon_comic_reward_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_reward_1")
/// Image `icon_comic_reward_2`.
static let icon_comic_reward_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_reward_2")
/// Image `icon_comic_reward_3`.
static let icon_comic_reward_3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_reward_3")
/// Image `icon_comic_reward`.
static let icon_comic_reward = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_reward")
/// Image `icon_comic_title_vip`.
static let icon_comic_title_vip = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_title_vip")
/// Image `icon_comic_uparrow`.
static let icon_comic_uparrow = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comic_uparrow")
/// Image `icon_comment_like`.
static let icon_comment_like = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comment_like")
/// Image `icon_comment`.
static let icon_comment = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_comment")
/// Image `icon_description_more`.
static let icon_description_more = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_description_more")
/// Image `icon_find_comic_play`.
static let icon_find_comic_play = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_find_comic_play")
/// Image `icon_find_more`.
static let icon_find_more = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_find_more")
/// Image `icon_good_comment`.
static let icon_good_comment = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_good_comment")
/// Image `icon_nav_back`.
static let icon_nav_back = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_nav_back")
/// Image `icon_nav_down`.
static let icon_nav_down = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_nav_down")
/// Image `icon_nav_report`.
static let icon_nav_report = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_nav_report")
/// Image `icon_nav_share`.
static let icon_nav_share = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_nav_share")
/// Image `icon_reward_lv0`.
static let icon_reward_lv0 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv0")
/// Image `icon_reward_lv10`.
static let icon_reward_lv10 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv10")
/// Image `icon_reward_lv1`.
static let icon_reward_lv1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv1")
/// Image `icon_reward_lv2`.
static let icon_reward_lv2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv2")
/// Image `icon_reward_lv3`.
static let icon_reward_lv3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv3")
/// Image `icon_reward_lv4`.
static let icon_reward_lv4 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv4")
/// Image `icon_reward_lv5`.
static let icon_reward_lv5 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv5")
/// Image `icon_reward_lv6`.
static let icon_reward_lv6 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv6")
/// Image `icon_reward_lv7`.
static let icon_reward_lv7 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv7")
/// Image `icon_reward_lv8`.
static let icon_reward_lv8 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv8")
/// Image `icon_reward_lv9`.
static let icon_reward_lv9 = Rswift.ImageResource(bundle: R.hostingBundle, name: "icon_reward_lv9")
/// Image `launch_bottom`.
static let launch_bottom = Rswift.ImageResource(bundle: R.hostingBundle, name: "launch_bottom")
/// Image `launch_top`.
static let launch_top = Rswift.ImageResource(bundle: R.hostingBundle, name: "launch_top")
/// Image `nodata`.
static let nodata = Rswift.ImageResource(bundle: R.hostingBundle, name: "nodata")
/// Image `normal_placeholder_h`.
static let normal_placeholder_h = Rswift.ImageResource(bundle: R.hostingBundle, name: "normal_placeholder_h")
/// Image `normal_placeholder_v`.
static let normal_placeholder_v = Rswift.ImageResource(bundle: R.hostingBundle, name: "normal_placeholder_v")
/// Image `rank_frist`.
static let rank_frist = Rswift.ImageResource(bundle: R.hostingBundle, name: "rank_frist")
/// Image `rank_second`.
static let rank_second = Rswift.ImageResource(bundle: R.hostingBundle, name: "rank_second")
/// Image `rank_third`.
static let rank_third = Rswift.ImageResource(bundle: R.hostingBundle, name: "rank_third")
/// Image `refresh_discover`.
static let refresh_discover = Rswift.ImageResource(bundle: R.hostingBundle, name: "refresh_discover")
/// Image `refresh_kiss`.
static let refresh_kiss = Rswift.ImageResource(bundle: R.hostingBundle, name: "refresh_kiss")
/// Image `refresh_loading_1`.
static let refresh_loading_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "refresh_loading_1")
/// Image `refresh_loading_2`.
static let refresh_loading_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "refresh_loading_2")
/// Image `refresh_loading_3`.
static let refresh_loading_3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "refresh_loading_3")
/// Image `refresh_normal`.
static let refresh_normal = Rswift.ImageResource(bundle: R.hostingBundle, name: "refresh_normal")
/// Image `refresh_will_refresh`.
static let refresh_will_refresh = Rswift.ImageResource(bundle: R.hostingBundle, name: "refresh_will_refresh")
/// Image `tab_collect_no`.
static let tab_collect_no = Rswift.ImageResource(bundle: R.hostingBundle, name: "tab_collect_no")
/// Image `tab_collect_yes`.
static let tab_collect_yes = Rswift.ImageResource(bundle: R.hostingBundle, name: "tab_collect_yes")
/// Image `tab_comment`.
static let tab_comment = Rswift.ImageResource(bundle: R.hostingBundle, name: "tab_comment")
/// Image `tab_community_selected`.
static let tab_community_selected = Rswift.ImageResource(bundle: R.hostingBundle, name: "tab_community_selected")
/// Image `tab_community`.
static let tab_community = Rswift.ImageResource(bundle: R.hostingBundle, name: "tab_community")
/// Image `tab_find_selected`.
static let tab_find_selected = Rswift.ImageResource(bundle: R.hostingBundle, name: "tab_find_selected")
/// Image `tab_find`.
static let tab_find = Rswift.ImageResource(bundle: R.hostingBundle, name: "tab_find")
/// Image `tab_reward`.
static let tab_reward = Rswift.ImageResource(bundle: R.hostingBundle, name: "tab_reward")
/// Image `yaofan`.
static let yaofan = Rswift.ImageResource(bundle: R.hostingBundle, name: "yaofan")
#if os(iOS) || os(tvOS)
/// `UIImage(named: "banner_dot", bundle: ..., traitCollection: ...)`
static func banner_dot(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.banner_dot, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "banner_dot_selected", bundle: ..., traitCollection: ...)`
static func banner_dot_selected(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.banner_dot_selected, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "bg_comic_gray_mask", bundle: ..., traitCollection: ...)`
static func bg_comic_gray_mask(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.bg_comic_gray_mask, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "bg_comment_separator", bundle: ..., traitCollection: ...)`
static func bg_comment_separator(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.bg_comment_separator, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "bg_find_comic_nav", bundle: ..., traitCollection: ...)`
static func bg_find_comic_nav(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.bg_find_comic_nav, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "bg_find_comic_top", bundle: ..., traitCollection: ...)`
static func bg_find_comic_top(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.bg_find_comic_top, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "bg_tab_line", bundle: ..., traitCollection: ...)`
static func bg_tab_line(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.bg_tab_line, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_cate_down", bundle: ..., traitCollection: ...)`
static func find_comic_nav_cate_down(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_cate_down, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_cate_up", bundle: ..., traitCollection: ...)`
static func find_comic_nav_cate_up(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_cate_up, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_pay_down", bundle: ..., traitCollection: ...)`
static func find_comic_nav_pay_down(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_pay_down, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_pay_up", bundle: ..., traitCollection: ...)`
static func find_comic_nav_pay_up(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_pay_up, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_rank_down", bundle: ..., traitCollection: ...)`
static func find_comic_nav_rank_down(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_rank_down, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_rank_up", bundle: ..., traitCollection: ...)`
static func find_comic_nav_rank_up(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_rank_up, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_search_down", bundle: ..., traitCollection: ...)`
static func find_comic_nav_search_down(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_search_down, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_search_up", bundle: ..., traitCollection: ...)`
static func find_comic_nav_search_up(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_search_up, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_vip_down", bundle: ..., traitCollection: ...)`
static func find_comic_nav_vip_down(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_vip_down, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "find_comic_nav_vip_up", bundle: ..., traitCollection: ...)`
static func find_comic_nav_vip_up(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.find_comic_nav_vip_up, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_camera", bundle: ..., traitCollection: ...)`
static func icon_comic_camera(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_camera, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_collect", bundle: ..., traitCollection: ...)`
static func icon_comic_collect(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_collect, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_forum_like", bundle: ..., traitCollection: ...)`
static func icon_comic_forum_like(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_forum_like, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_hot", bundle: ..., traitCollection: ...)`
static func icon_comic_hot(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_hot, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_info_more", bundle: ..., traitCollection: ...)`
static func icon_comic_info_more(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_info_more, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_new_chapter", bundle: ..., traitCollection: ...)`
static func icon_comic_new_chapter(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_new_chapter, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_reward", bundle: ..., traitCollection: ...)`
static func icon_comic_reward(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_reward, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_reward_1", bundle: ..., traitCollection: ...)`
static func icon_comic_reward_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_reward_1, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_reward_2", bundle: ..., traitCollection: ...)`
static func icon_comic_reward_2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_reward_2, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_reward_3", bundle: ..., traitCollection: ...)`
static func icon_comic_reward_3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_reward_3, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_title_vip", bundle: ..., traitCollection: ...)`
static func icon_comic_title_vip(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_title_vip, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comic_uparrow", bundle: ..., traitCollection: ...)`
static func icon_comic_uparrow(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comic_uparrow, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comment", bundle: ..., traitCollection: ...)`
static func icon_comment(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comment, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_comment_like", bundle: ..., traitCollection: ...)`
static func icon_comment_like(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_comment_like, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_description_more", bundle: ..., traitCollection: ...)`
static func icon_description_more(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_description_more, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_find_comic_play", bundle: ..., traitCollection: ...)`
static func icon_find_comic_play(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_find_comic_play, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_find_more", bundle: ..., traitCollection: ...)`
static func icon_find_more(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_find_more, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_good_comment", bundle: ..., traitCollection: ...)`
static func icon_good_comment(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_good_comment, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_nav_back", bundle: ..., traitCollection: ...)`
static func icon_nav_back(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_nav_back, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_nav_down", bundle: ..., traitCollection: ...)`
static func icon_nav_down(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_nav_down, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_nav_report", bundle: ..., traitCollection: ...)`
static func icon_nav_report(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_nav_report, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_nav_share", bundle: ..., traitCollection: ...)`
static func icon_nav_share(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_nav_share, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv0", bundle: ..., traitCollection: ...)`
static func icon_reward_lv0(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv0, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv1", bundle: ..., traitCollection: ...)`
static func icon_reward_lv1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv1, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv10", bundle: ..., traitCollection: ...)`
static func icon_reward_lv10(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv10, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv2", bundle: ..., traitCollection: ...)`
static func icon_reward_lv2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv2, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv3", bundle: ..., traitCollection: ...)`
static func icon_reward_lv3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv3, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv4", bundle: ..., traitCollection: ...)`
static func icon_reward_lv4(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv4, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv5", bundle: ..., traitCollection: ...)`
static func icon_reward_lv5(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv5, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv6", bundle: ..., traitCollection: ...)`
static func icon_reward_lv6(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv6, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv7", bundle: ..., traitCollection: ...)`
static func icon_reward_lv7(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv7, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv8", bundle: ..., traitCollection: ...)`
static func icon_reward_lv8(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv8, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "icon_reward_lv9", bundle: ..., traitCollection: ...)`
static func icon_reward_lv9(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icon_reward_lv9, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "launch_bottom", bundle: ..., traitCollection: ...)`
static func launch_bottom(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.launch_bottom, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "launch_top", bundle: ..., traitCollection: ...)`
static func launch_top(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.launch_top, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "nodata", bundle: ..., traitCollection: ...)`
static func nodata(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.nodata, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "normal_placeholder_h", bundle: ..., traitCollection: ...)`
static func normal_placeholder_h(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.normal_placeholder_h, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "normal_placeholder_v", bundle: ..., traitCollection: ...)`
static func normal_placeholder_v(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.normal_placeholder_v, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "rank_frist", bundle: ..., traitCollection: ...)`
static func rank_frist(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.rank_frist, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "rank_second", bundle: ..., traitCollection: ...)`
static func rank_second(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.rank_second, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "rank_third", bundle: ..., traitCollection: ...)`
static func rank_third(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.rank_third, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "refresh_discover", bundle: ..., traitCollection: ...)`
static func refresh_discover(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.refresh_discover, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "refresh_kiss", bundle: ..., traitCollection: ...)`
static func refresh_kiss(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.refresh_kiss, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "refresh_loading_1", bundle: ..., traitCollection: ...)`
static func refresh_loading_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.refresh_loading_1, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "refresh_loading_2", bundle: ..., traitCollection: ...)`
static func refresh_loading_2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.refresh_loading_2, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "refresh_loading_3", bundle: ..., traitCollection: ...)`
static func refresh_loading_3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.refresh_loading_3, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "refresh_normal", bundle: ..., traitCollection: ...)`
static func refresh_normal(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.refresh_normal, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "refresh_will_refresh", bundle: ..., traitCollection: ...)`
static func refresh_will_refresh(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.refresh_will_refresh, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "tab_collect_no", bundle: ..., traitCollection: ...)`
static func tab_collect_no(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.tab_collect_no, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "tab_collect_yes", bundle: ..., traitCollection: ...)`
static func tab_collect_yes(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.tab_collect_yes, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "tab_comment", bundle: ..., traitCollection: ...)`
static func tab_comment(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.tab_comment, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "tab_community", bundle: ..., traitCollection: ...)`
static func tab_community(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.tab_community, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "tab_community_selected", bundle: ..., traitCollection: ...)`
static func tab_community_selected(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.tab_community_selected, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "tab_find", bundle: ..., traitCollection: ...)`
static func tab_find(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.tab_find, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "tab_find_selected", bundle: ..., traitCollection: ...)`
static func tab_find_selected(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.tab_find_selected, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "tab_reward", bundle: ..., traitCollection: ...)`
static func tab_reward(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.tab_reward, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "yaofan", bundle: ..., traitCollection: ...)`
static func yaofan(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.yaofan, compatibleWith: traitCollection)
}
#endif
fileprivate init() {}
}
fileprivate struct intern: Rswift.Validatable {
fileprivate static func validate() throws {
try _R.validate()
}
fileprivate init() {}
}
fileprivate class Class {}
fileprivate init() {}
}
struct _R: Rswift.Validatable {
static func validate() throws {
#if os(iOS) || os(tvOS)
try storyboard.validate()
#endif
}
#if os(iOS) || os(tvOS)
struct storyboard: Rswift.Validatable {
static func validate() throws {
#if os(iOS) || os(tvOS)
try launchScreen.validate()
#endif
}
#if os(iOS) || os(tvOS)
struct launchScreen: Rswift.StoryboardResourceWithInitialControllerType, Rswift.Validatable {
typealias InitialController = UIKit.UIViewController
let bundle = R.hostingBundle
let name = "LaunchScreen"
static func validate() throws {
if UIKit.UIImage(named: "launch_bottom", in: R.hostingBundle, compatibleWith: nil) == nil { throw Rswift.ValidationError(description: "[R.swift] Image named 'launch_bottom' is used in storyboard 'LaunchScreen', but couldn't be loaded.") }
if UIKit.UIImage(named: "launch_top", in: R.hostingBundle, compatibleWith: nil) == nil { throw Rswift.ValidationError(description: "[R.swift] Image named 'launch_top' is used in storyboard 'LaunchScreen', but couldn't be loaded.") }
if #available(iOS 11.0, tvOS 11.0, *) {
}
}
fileprivate init() {}
}
#endif
fileprivate init() {}
}
#endif
fileprivate init() {}
}