-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR.generated.swift
807 lines (696 loc) · 34.9 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
//
// 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 font.validate()
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 4 colors.
struct color {
/// Color `AccentColor`.
static let accentColor = Rswift.ColorResource(bundle: R.hostingBundle, name: "AccentColor")
/// Color `green`.
static let green = Rswift.ColorResource(bundle: R.hostingBundle, name: "green")
/// Color `whitegreen`.
static let whitegreen = Rswift.ColorResource(bundle: R.hostingBundle, name: "whitegreen")
/// Color `yellowgreen`.
static let yellowgreen = Rswift.ColorResource(bundle: R.hostingBundle, name: "yellowgreen")
#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(iOS) || os(tvOS)
/// `UIColor(named: "green", bundle: ..., traitCollection: ...)`
@available(tvOS 11.0, *)
@available(iOS 11.0, *)
static func green(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIColor? {
return UIKit.UIColor(resource: R.color.green, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIColor(named: "whitegreen", bundle: ..., traitCollection: ...)`
@available(tvOS 11.0, *)
@available(iOS 11.0, *)
static func whitegreen(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIColor? {
return UIKit.UIColor(resource: R.color.whitegreen, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIColor(named: "yellowgreen", bundle: ..., traitCollection: ...)`
@available(tvOS 11.0, *)
@available(iOS 11.0, *)
static func yellowgreen(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIColor? {
return UIKit.UIColor(resource: R.color.yellowgreen, 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
#if os(watchOS)
/// `UIColor(named: "green", bundle: ..., traitCollection: ...)`
@available(watchOSApplicationExtension 4.0, *)
static func green(_: Void = ()) -> UIKit.UIColor? {
return UIKit.UIColor(named: R.color.green.name)
}
#endif
#if os(watchOS)
/// `UIColor(named: "whitegreen", bundle: ..., traitCollection: ...)`
@available(watchOSApplicationExtension 4.0, *)
static func whitegreen(_: Void = ()) -> UIKit.UIColor? {
return UIKit.UIColor(named: R.color.whitegreen.name)
}
#endif
#if os(watchOS)
/// `UIColor(named: "yellowgreen", bundle: ..., traitCollection: ...)`
@available(watchOSApplicationExtension 4.0, *)
static func yellowgreen(_: Void = ()) -> UIKit.UIColor? {
return UIKit.UIColor(named: R.color.yellowgreen.name)
}
#endif
fileprivate init() {}
}
/// This `R.entitlements` struct is generated, and contains static references to 1 properties.
struct entitlements {
static let apsEnvironment = infoPlistString(path: [], key: "aps-environment") ?? "development"
fileprivate init() {}
}
/// This `R.file` struct is generated, and contains static references to 3 files.
struct file {
/// Resource file `GoogleService-Info.plist`.
static let googleServiceInfoPlist = Rswift.FileResource(bundle: R.hostingBundle, name: "GoogleService-Info", pathExtension: "plist")
/// Resource file `NotoSansCJKkr-Medium.otf`.
static let notoSansCJKkrMediumOtf = Rswift.FileResource(bundle: R.hostingBundle, name: "NotoSansCJKkr-Medium", pathExtension: "otf")
/// Resource file `NotoSansCJKkr-Regular.otf`.
static let notoSansCJKkrRegularOtf = Rswift.FileResource(bundle: R.hostingBundle, name: "NotoSansCJKkr-Regular", pathExtension: "otf")
/// `bundle.url(forResource: "GoogleService-Info", withExtension: "plist")`
static func googleServiceInfoPlist(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.googleServiceInfoPlist
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "NotoSansCJKkr-Medium", withExtension: "otf")`
static func notoSansCJKkrMediumOtf(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.notoSansCJKkrMediumOtf
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "NotoSansCJKkr-Regular", withExtension: "otf")`
static func notoSansCJKkrRegularOtf(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.notoSansCJKkrRegularOtf
return fileResource.bundle.url(forResource: fileResource)
}
fileprivate init() {}
}
/// This `R.font` struct is generated, and contains static references to 2 fonts.
struct font: Rswift.Validatable {
/// Font `NotoSansCJKkr-Medium`.
static let notoSansCJKkrMedium = Rswift.FontResource(fontName: "NotoSansCJKkr-Medium")
/// Font `NotoSansCJKkr-Regular`.
static let notoSansCJKkrRegular = Rswift.FontResource(fontName: "NotoSansCJKkr-Regular")
/// `UIFont(name: "NotoSansCJKkr-Medium", size: ...)`
static func notoSansCJKkrMedium(size: CGFloat) -> UIKit.UIFont? {
return UIKit.UIFont(resource: notoSansCJKkrMedium, size: size)
}
/// `UIFont(name: "NotoSansCJKkr-Regular", size: ...)`
static func notoSansCJKkrRegular(size: CGFloat) -> UIKit.UIFont? {
return UIKit.UIFont(resource: notoSansCJKkrRegular, size: size)
}
static func validate() throws {
if R.font.notoSansCJKkrMedium(size: 42) == nil { throw Rswift.ValidationError(description:"[R.swift] Font 'NotoSansCJKkr-Medium' could not be loaded, is 'NotoSansCJKkr-Medium.otf' added to the UIAppFonts array in this targets Info.plist?") }
if R.font.notoSansCJKkrRegular(size: 42) == nil { throw Rswift.ValidationError(description:"[R.swift] Font 'NotoSansCJKkr-Regular' could not be loaded, is 'NotoSansCJKkr-Regular.otf' added to the UIAppFonts array in this targets Info.plist?") }
}
fileprivate init() {}
}
/// This `R.image` struct is generated, and contains static references to 52 images.
struct image {
/// Image `Ellipse 85`.
static let ellipse85 = Rswift.ImageResource(bundle: R.hostingBundle, name: "Ellipse 85")
/// Image `Social life-cuate`.
static let socialLifeCuate = Rswift.ImageResource(bundle: R.hostingBundle, name: "Social life-cuate")
/// Image `antenna`.
static let antenna = Rswift.ImageResource(bundle: R.hostingBundle, name: "antenna")
/// Image `arrow`.
static let arrow = Rswift.ImageResource(bundle: R.hostingBundle, name: "arrow")
/// Image `bagde`.
static let bagde = Rswift.ImageResource(bundle: R.hostingBundle, name: "bagde")
/// Image `bell`.
static let bell = Rswift.ImageResource(bundle: R.hostingBundle, name: "bell")
/// Image `cancel_match`.
static let cancel_match = Rswift.ImageResource(bundle: R.hostingBundle, name: "cancel_match")
/// Image `check`.
static let check = Rswift.ImageResource(bundle: R.hostingBundle, name: "check")
/// Image `close_big`.
static let close_big = Rswift.ImageResource(bundle: R.hostingBundle, name: "close_big")
/// Image `close_small`.
static let close_small = Rswift.ImageResource(bundle: R.hostingBundle, name: "close_small")
/// Image `faq`.
static let faq = Rswift.ImageResource(bundle: R.hostingBundle, name: "faq")
/// Image `filter_control`.
static let filter_control = Rswift.ImageResource(bundle: R.hostingBundle, name: "filter_control")
/// Image `finding`.
static let finding = Rswift.ImageResource(bundle: R.hostingBundle, name: "finding")
/// Image `friendsAct`.
static let friendsAct = Rswift.ImageResource(bundle: R.hostingBundle, name: "friendsAct")
/// Image `friendsInact`.
static let friendsInact = Rswift.ImageResource(bundle: R.hostingBundle, name: "friendsInact")
/// Image `friends_plus`.
static let friends_plus = Rswift.ImageResource(bundle: R.hostingBundle, name: "friends_plus")
/// Image `homeAct`.
static let homeAct = Rswift.ImageResource(bundle: R.hostingBundle, name: "homeAct")
/// Image `homeInact`.
static let homeInact = Rswift.ImageResource(bundle: R.hostingBundle, name: "homeInact")
/// Image `man`.
static let man = Rswift.ImageResource(bundle: R.hostingBundle, name: "man")
/// Image `map_marker`.
static let map_marker = Rswift.ImageResource(bundle: R.hostingBundle, name: "map_marker")
/// Image `more_arrow_down`.
static let more_arrow_down = Rswift.ImageResource(bundle: R.hostingBundle, name: "more_arrow_down")
/// Image `more_arrow_right`.
static let more_arrow_right = Rswift.ImageResource(bundle: R.hostingBundle, name: "more_arrow_right")
/// Image `more_arrow_up`.
static let more_arrow_up = Rswift.ImageResource(bundle: R.hostingBundle, name: "more_arrow_up")
/// Image `more_arrow`.
static let more_arrow = Rswift.ImageResource(bundle: R.hostingBundle, name: "more_arrow")
/// Image `more`.
static let more = Rswift.ImageResource(bundle: R.hostingBundle, name: "more")
/// Image `myAct`.
static let myAct = Rswift.ImageResource(bundle: R.hostingBundle, name: "myAct")
/// Image `myInact`.
static let myInact = Rswift.ImageResource(bundle: R.hostingBundle, name: "myInact")
/// Image `notice`.
static let notice = Rswift.ImageResource(bundle: R.hostingBundle, name: "notice")
/// Image `onboarding_img1`.
static let onboarding_img1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "onboarding_img1")
/// Image `onboarding_img2`.
static let onboarding_img2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "onboarding_img2")
/// Image `permit`.
static let permit = Rswift.ImageResource(bundle: R.hostingBundle, name: "permit")
/// Image `place`.
static let place = Rswift.ImageResource(bundle: R.hostingBundle, name: "place")
/// Image `plus`.
static let plus = Rswift.ImageResource(bundle: R.hostingBundle, name: "plus")
/// Image `profile_img`.
static let profile_img = Rswift.ImageResource(bundle: R.hostingBundle, name: "profile_img")
/// Image `qna`.
static let qna = Rswift.ImageResource(bundle: R.hostingBundle, name: "qna")
/// Image `sendAct`.
static let sendAct = Rswift.ImageResource(bundle: R.hostingBundle, name: "sendAct")
/// Image `sendInact`.
static let sendInact = Rswift.ImageResource(bundle: R.hostingBundle, name: "sendInact")
/// Image `sesacImg`.
static let sesacImg = Rswift.ImageResource(bundle: R.hostingBundle, name: "sesacImg")
/// Image `sesac_bg_black`.
static let sesac_bg_black = Rswift.ImageResource(bundle: R.hostingBundle, name: "sesac_bg_black")
/// Image `sesac_bg_color`.
static let sesac_bg_color = Rswift.ImageResource(bundle: R.hostingBundle, name: "sesac_bg_color")
/// Image `sesac_face_1`.
static let sesac_face_1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "sesac_face_1")
/// Image `sesac_face_2`.
static let sesac_face_2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "sesac_face_2")
/// Image `sesac_face_3`.
static let sesac_face_3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "sesac_face_3")
/// Image `sesac_face_4`.
static let sesac_face_4 = Rswift.ImageResource(bundle: R.hostingBundle, name: "sesac_face_4")
/// Image `sesac_face_5`.
static let sesac_face_5 = Rswift.ImageResource(bundle: R.hostingBundle, name: "sesac_face_5")
/// Image `setting_alarm`.
static let setting_alarm = Rswift.ImageResource(bundle: R.hostingBundle, name: "setting_alarm")
/// Image `shopAct`.
static let shopAct = Rswift.ImageResource(bundle: R.hostingBundle, name: "shopAct")
/// Image `shopInact`.
static let shopInact = Rswift.ImageResource(bundle: R.hostingBundle, name: "shopInact")
/// Image `siren`.
static let siren = Rswift.ImageResource(bundle: R.hostingBundle, name: "siren")
/// Image `splash_logo`.
static let splash_logo = Rswift.ImageResource(bundle: R.hostingBundle, name: "splash_logo")
/// Image `woman`.
static let woman = Rswift.ImageResource(bundle: R.hostingBundle, name: "woman")
/// Image `write`.
static let write = Rswift.ImageResource(bundle: R.hostingBundle, name: "write")
#if os(iOS) || os(tvOS)
/// `UIImage(named: "Ellipse 85", bundle: ..., traitCollection: ...)`
static func ellipse85(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.ellipse85, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "Social life-cuate", bundle: ..., traitCollection: ...)`
static func socialLifeCuate(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.socialLifeCuate, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "antenna", bundle: ..., traitCollection: ...)`
static func antenna(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.antenna, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "arrow", bundle: ..., traitCollection: ...)`
static func arrow(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.arrow, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "bagde", bundle: ..., traitCollection: ...)`
static func bagde(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.bagde, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "bell", bundle: ..., traitCollection: ...)`
static func bell(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.bell, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "cancel_match", bundle: ..., traitCollection: ...)`
static func cancel_match(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.cancel_match, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "check", bundle: ..., traitCollection: ...)`
static func check(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.check, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "close_big", bundle: ..., traitCollection: ...)`
static func close_big(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.close_big, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "close_small", bundle: ..., traitCollection: ...)`
static func close_small(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.close_small, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "faq", bundle: ..., traitCollection: ...)`
static func faq(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.faq, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "filter_control", bundle: ..., traitCollection: ...)`
static func filter_control(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.filter_control, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "finding", bundle: ..., traitCollection: ...)`
static func finding(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.finding, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "friendsAct", bundle: ..., traitCollection: ...)`
static func friendsAct(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.friendsAct, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "friendsInact", bundle: ..., traitCollection: ...)`
static func friendsInact(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.friendsInact, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "friends_plus", bundle: ..., traitCollection: ...)`
static func friends_plus(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.friends_plus, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "homeAct", bundle: ..., traitCollection: ...)`
static func homeAct(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.homeAct, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "homeInact", bundle: ..., traitCollection: ...)`
static func homeInact(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.homeInact, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "man", bundle: ..., traitCollection: ...)`
static func man(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.man, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "map_marker", bundle: ..., traitCollection: ...)`
static func map_marker(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.map_marker, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "more", bundle: ..., traitCollection: ...)`
static func more(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.more, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "more_arrow", bundle: ..., traitCollection: ...)`
static func more_arrow(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.more_arrow, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "more_arrow_down", bundle: ..., traitCollection: ...)`
static func more_arrow_down(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.more_arrow_down, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "more_arrow_right", bundle: ..., traitCollection: ...)`
static func more_arrow_right(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.more_arrow_right, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "more_arrow_up", bundle: ..., traitCollection: ...)`
static func more_arrow_up(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.more_arrow_up, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "myAct", bundle: ..., traitCollection: ...)`
static func myAct(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.myAct, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "myInact", bundle: ..., traitCollection: ...)`
static func myInact(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.myInact, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "notice", bundle: ..., traitCollection: ...)`
static func notice(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.notice, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "onboarding_img1", bundle: ..., traitCollection: ...)`
static func onboarding_img1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.onboarding_img1, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "onboarding_img2", bundle: ..., traitCollection: ...)`
static func onboarding_img2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.onboarding_img2, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "permit", bundle: ..., traitCollection: ...)`
static func permit(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.permit, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "place", bundle: ..., traitCollection: ...)`
static func place(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.place, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "plus", bundle: ..., traitCollection: ...)`
static func plus(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.plus, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "profile_img", bundle: ..., traitCollection: ...)`
static func profile_img(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.profile_img, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "qna", bundle: ..., traitCollection: ...)`
static func qna(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.qna, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sendAct", bundle: ..., traitCollection: ...)`
static func sendAct(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sendAct, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sendInact", bundle: ..., traitCollection: ...)`
static func sendInact(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sendInact, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sesacImg", bundle: ..., traitCollection: ...)`
static func sesacImg(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sesacImg, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sesac_bg_black", bundle: ..., traitCollection: ...)`
static func sesac_bg_black(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sesac_bg_black, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sesac_bg_color", bundle: ..., traitCollection: ...)`
static func sesac_bg_color(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sesac_bg_color, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sesac_face_1", bundle: ..., traitCollection: ...)`
static func sesac_face_1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sesac_face_1, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sesac_face_2", bundle: ..., traitCollection: ...)`
static func sesac_face_2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sesac_face_2, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sesac_face_3", bundle: ..., traitCollection: ...)`
static func sesac_face_3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sesac_face_3, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sesac_face_4", bundle: ..., traitCollection: ...)`
static func sesac_face_4(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sesac_face_4, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "sesac_face_5", bundle: ..., traitCollection: ...)`
static func sesac_face_5(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.sesac_face_5, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "setting_alarm", bundle: ..., traitCollection: ...)`
static func setting_alarm(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.setting_alarm, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "shopAct", bundle: ..., traitCollection: ...)`
static func shopAct(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.shopAct, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "shopInact", bundle: ..., traitCollection: ...)`
static func shopInact(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.shopInact, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "siren", bundle: ..., traitCollection: ...)`
static func siren(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.siren, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "splash_logo", bundle: ..., traitCollection: ...)`
static func splash_logo(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.splash_logo, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "woman", bundle: ..., traitCollection: ...)`
static func woman(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.woman, compatibleWith: traitCollection)
}
#endif
#if os(iOS) || os(tvOS)
/// `UIImage(named: "write", bundle: ..., traitCollection: ...)`
static func write(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.write, compatibleWith: traitCollection)
}
#endif
fileprivate init() {}
}
/// This `R.info` struct is generated, and contains static references to 1 properties.
struct info {
struct uiApplicationSceneManifest {
static let _key = "UIApplicationSceneManifest"
static let uiApplicationSupportsMultipleScenes = false
struct uiSceneConfigurations {
static let _key = "UISceneConfigurations"
struct uiWindowSceneSessionRoleApplication {
struct defaultConfiguration {
static let _key = "Default Configuration"
static let uiSceneConfigurationName = infoPlistString(path: ["UIApplicationSceneManifest", "UISceneConfigurations", "UIWindowSceneSessionRoleApplication", "Default Configuration"], key: "UISceneConfigurationName") ?? "Default Configuration"
static let uiSceneDelegateClassName = infoPlistString(path: ["UIApplicationSceneManifest", "UISceneConfigurations", "UIWindowSceneSessionRoleApplication", "Default Configuration"], key: "UISceneDelegateClassName") ?? "$(PRODUCT_MODULE_NAME).SceneDelegate"
fileprivate init() {}
}
fileprivate init() {}
}
fileprivate init() {}
}
fileprivate init() {}
}
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: "splash_logo", in: R.hostingBundle, compatibleWith: nil) == nil { throw Rswift.ValidationError(description: "[R.swift] Image named 'splash_logo' 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() {}
}