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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;
#[cfg(feature = "objc2-quartz-core")]
#[cfg(not(target_os = "watchos"))]
use objc2_quartz_core::*;

use crate::*;

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIViewAnimationCurve(pub NSInteger);
impl UIViewAnimationCurve {
    #[doc(alias = "UIViewAnimationCurveEaseInOut")]
    pub const EaseInOut: Self = Self(0);
    #[doc(alias = "UIViewAnimationCurveEaseIn")]
    pub const EaseIn: Self = Self(1);
    #[doc(alias = "UIViewAnimationCurveEaseOut")]
    pub const EaseOut: Self = Self(2);
    #[doc(alias = "UIViewAnimationCurveLinear")]
    pub const Linear: Self = Self(3);
}

unsafe impl Encode for UIViewAnimationCurve {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UIViewAnimationCurve {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIViewContentMode(pub NSInteger);
impl UIViewContentMode {
    #[doc(alias = "UIViewContentModeScaleToFill")]
    pub const ScaleToFill: Self = Self(0);
    #[doc(alias = "UIViewContentModeScaleAspectFit")]
    pub const ScaleAspectFit: Self = Self(1);
    #[doc(alias = "UIViewContentModeScaleAspectFill")]
    pub const ScaleAspectFill: Self = Self(2);
    #[doc(alias = "UIViewContentModeRedraw")]
    pub const Redraw: Self = Self(3);
    #[doc(alias = "UIViewContentModeCenter")]
    pub const Center: Self = Self(4);
    #[doc(alias = "UIViewContentModeTop")]
    pub const Top: Self = Self(5);
    #[doc(alias = "UIViewContentModeBottom")]
    pub const Bottom: Self = Self(6);
    #[doc(alias = "UIViewContentModeLeft")]
    pub const Left: Self = Self(7);
    #[doc(alias = "UIViewContentModeRight")]
    pub const Right: Self = Self(8);
    #[doc(alias = "UIViewContentModeTopLeft")]
    pub const TopLeft: Self = Self(9);
    #[doc(alias = "UIViewContentModeTopRight")]
    pub const TopRight: Self = Self(10);
    #[doc(alias = "UIViewContentModeBottomLeft")]
    pub const BottomLeft: Self = Self(11);
    #[doc(alias = "UIViewContentModeBottomRight")]
    pub const BottomRight: Self = Self(12);
}

unsafe impl Encode for UIViewContentMode {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UIViewContentMode {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIViewAnimationTransition(pub NSInteger);
impl UIViewAnimationTransition {
    #[doc(alias = "UIViewAnimationTransitionNone")]
    pub const None: Self = Self(0);
    #[doc(alias = "UIViewAnimationTransitionFlipFromLeft")]
    pub const FlipFromLeft: Self = Self(1);
    #[doc(alias = "UIViewAnimationTransitionFlipFromRight")]
    pub const FlipFromRight: Self = Self(2);
    #[doc(alias = "UIViewAnimationTransitionCurlUp")]
    pub const CurlUp: Self = Self(3);
    #[doc(alias = "UIViewAnimationTransitionCurlDown")]
    pub const CurlDown: Self = Self(4);
}

unsafe impl Encode for UIViewAnimationTransition {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UIViewAnimationTransition {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_OPTIONS
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIViewAutoresizing(pub NSUInteger);
bitflags::bitflags! {
    impl UIViewAutoresizing: NSUInteger {
        #[doc(alias = "UIViewAutoresizingNone")]
        const None = 0;
        #[doc(alias = "UIViewAutoresizingFlexibleLeftMargin")]
        const FlexibleLeftMargin = 1<<0;
        #[doc(alias = "UIViewAutoresizingFlexibleWidth")]
        const FlexibleWidth = 1<<1;
        #[doc(alias = "UIViewAutoresizingFlexibleRightMargin")]
        const FlexibleRightMargin = 1<<2;
        #[doc(alias = "UIViewAutoresizingFlexibleTopMargin")]
        const FlexibleTopMargin = 1<<3;
        #[doc(alias = "UIViewAutoresizingFlexibleHeight")]
        const FlexibleHeight = 1<<4;
        #[doc(alias = "UIViewAutoresizingFlexibleBottomMargin")]
        const FlexibleBottomMargin = 1<<5;
    }
}

unsafe impl Encode for UIViewAutoresizing {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for UIViewAutoresizing {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_OPTIONS
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIViewAnimationOptions(pub NSUInteger);
bitflags::bitflags! {
    impl UIViewAnimationOptions: NSUInteger {
        const UIViewAnimationOptionLayoutSubviews = 1<<0;
        const UIViewAnimationOptionAllowUserInteraction = 1<<1;
        const UIViewAnimationOptionBeginFromCurrentState = 1<<2;
        const UIViewAnimationOptionRepeat = 1<<3;
        const UIViewAnimationOptionAutoreverse = 1<<4;
        const UIViewAnimationOptionOverrideInheritedDuration = 1<<5;
        const UIViewAnimationOptionOverrideInheritedCurve = 1<<6;
        const UIViewAnimationOptionAllowAnimatedContent = 1<<7;
        const UIViewAnimationOptionShowHideTransitionViews = 1<<8;
        const UIViewAnimationOptionOverrideInheritedOptions = 1<<9;
        const UIViewAnimationOptionCurveEaseInOut = 0<<16;
        const UIViewAnimationOptionCurveEaseIn = 1<<16;
        const UIViewAnimationOptionCurveEaseOut = 2<<16;
        const UIViewAnimationOptionCurveLinear = 3<<16;
        const UIViewAnimationOptionTransitionNone = 0<<20;
        const UIViewAnimationOptionTransitionFlipFromLeft = 1<<20;
        const UIViewAnimationOptionTransitionFlipFromRight = 2<<20;
        const UIViewAnimationOptionTransitionCurlUp = 3<<20;
        const UIViewAnimationOptionTransitionCurlDown = 4<<20;
        const UIViewAnimationOptionTransitionCrossDissolve = 5<<20;
        const UIViewAnimationOptionTransitionFlipFromTop = 6<<20;
        const UIViewAnimationOptionTransitionFlipFromBottom = 7<<20;
        const UIViewAnimationOptionPreferredFramesPerSecondDefault = 0<<24;
        const UIViewAnimationOptionPreferredFramesPerSecond60 = 3<<24;
        const UIViewAnimationOptionPreferredFramesPerSecond30 = 7<<24;
    }
}

unsafe impl Encode for UIViewAnimationOptions {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for UIViewAnimationOptions {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_OPTIONS
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIViewKeyframeAnimationOptions(pub NSUInteger);
bitflags::bitflags! {
    impl UIViewKeyframeAnimationOptions: NSUInteger {
        const UIViewKeyframeAnimationOptionLayoutSubviews = UIViewAnimationOptions::UIViewAnimationOptionLayoutSubviews.0;
        const UIViewKeyframeAnimationOptionAllowUserInteraction = UIViewAnimationOptions::UIViewAnimationOptionAllowUserInteraction.0;
        const UIViewKeyframeAnimationOptionBeginFromCurrentState = UIViewAnimationOptions::UIViewAnimationOptionBeginFromCurrentState.0;
        const UIViewKeyframeAnimationOptionRepeat = UIViewAnimationOptions::UIViewAnimationOptionRepeat.0;
        const UIViewKeyframeAnimationOptionAutoreverse = UIViewAnimationOptions::UIViewAnimationOptionAutoreverse.0;
        const UIViewKeyframeAnimationOptionOverrideInheritedDuration = UIViewAnimationOptions::UIViewAnimationOptionOverrideInheritedDuration.0;
        const UIViewKeyframeAnimationOptionOverrideInheritedOptions = UIViewAnimationOptions::UIViewAnimationOptionOverrideInheritedOptions.0;
        const UIViewKeyframeAnimationOptionCalculationModeLinear = 0<<10;
        const UIViewKeyframeAnimationOptionCalculationModeDiscrete = 1<<10;
        const UIViewKeyframeAnimationOptionCalculationModePaced = 2<<10;
        const UIViewKeyframeAnimationOptionCalculationModeCubic = 3<<10;
        const UIViewKeyframeAnimationOptionCalculationModeCubicPaced = 4<<10;
    }
}

unsafe impl Encode for UIViewKeyframeAnimationOptions {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for UIViewKeyframeAnimationOptions {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UISystemAnimation(pub NSUInteger);
impl UISystemAnimation {
    #[doc(alias = "UISystemAnimationDelete")]
    pub const Delete: Self = Self(0);
}

unsafe impl Encode for UISystemAnimation {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

unsafe impl RefEncode for UISystemAnimation {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIViewTintAdjustmentMode(pub NSInteger);
impl UIViewTintAdjustmentMode {
    #[doc(alias = "UIViewTintAdjustmentModeAutomatic")]
    pub const Automatic: Self = Self(0);
    #[doc(alias = "UIViewTintAdjustmentModeNormal")]
    pub const Normal: Self = Self(1);
    #[doc(alias = "UIViewTintAdjustmentModeDimmed")]
    pub const Dimmed: Self = Self(2);
}

unsafe impl Encode for UIViewTintAdjustmentMode {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UIViewTintAdjustmentMode {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UISemanticContentAttribute(pub NSInteger);
impl UISemanticContentAttribute {
    #[doc(alias = "UISemanticContentAttributeUnspecified")]
    pub const Unspecified: Self = Self(0);
    #[doc(alias = "UISemanticContentAttributePlayback")]
    pub const Playback: Self = Self(1);
    #[doc(alias = "UISemanticContentAttributeSpatial")]
    pub const Spatial: Self = Self(2);
    #[doc(alias = "UISemanticContentAttributeForceLeftToRight")]
    pub const ForceLeftToRight: Self = Self(3);
    #[doc(alias = "UISemanticContentAttributeForceRightToLeft")]
    pub const ForceRightToLeft: Self = Self(4);
}

unsafe impl Encode for UISemanticContentAttribute {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UISemanticContentAttribute {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

extern_protocol!(
    pub unsafe trait UICoordinateSpace: NSObjectProtocol + IsMainThreadOnly {
        #[method(convertPoint:toCoordinateSpace:)]
        fn convertPoint_toCoordinateSpace(
            &self,
            point: CGPoint,
            coordinate_space: &ProtocolObject<dyn UICoordinateSpace>,
        ) -> CGPoint;

        #[method(convertPoint:fromCoordinateSpace:)]
        fn convertPoint_fromCoordinateSpace(
            &self,
            point: CGPoint,
            coordinate_space: &ProtocolObject<dyn UICoordinateSpace>,
        ) -> CGPoint;

        #[method(convertRect:toCoordinateSpace:)]
        fn convertRect_toCoordinateSpace(
            &self,
            rect: CGRect,
            coordinate_space: &ProtocolObject<dyn UICoordinateSpace>,
        ) -> CGRect;

        #[method(convertRect:fromCoordinateSpace:)]
        fn convertRect_fromCoordinateSpace(
            &self,
            rect: CGRect,
            coordinate_space: &ProtocolObject<dyn UICoordinateSpace>,
        ) -> CGRect;

        #[method(bounds)]
        fn bounds(&self) -> CGRect;
    }

    unsafe impl ProtocolType for dyn UICoordinateSpace {}
);

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(feature = "UIResponder")]
    pub struct UIView;

    #[cfg(feature = "UIResponder")]
    unsafe impl ClassType for UIView {
        #[inherits(NSObject)]
        type Super = UIResponder;
        type Mutability = MainThreadOnly;
    }
);

#[cfg(all(feature = "UIResponder", feature = "objc2-quartz-core"))]
#[cfg(not(target_os = "watchos"))]
unsafe impl CALayerDelegate for UIView {}

#[cfg(feature = "UIResponder")]
unsafe impl NSCoding for UIView {}

#[cfg(feature = "UIResponder")]
unsafe impl NSObjectProtocol for UIView {}

#[cfg(all(feature = "UIAppearance", feature = "UIResponder"))]
unsafe impl UIAppearance for UIView {}

#[cfg(all(feature = "UIAppearance", feature = "UIResponder"))]
unsafe impl UIAppearanceContainer for UIView {}

#[cfg(feature = "UIResponder")]
unsafe impl UICoordinateSpace for UIView {}

#[cfg(all(feature = "UIDynamicBehavior", feature = "UIResponder"))]
unsafe impl UIDynamicItem for UIView {}

#[cfg(all(feature = "UIFocus", feature = "UIResponder"))]
unsafe impl UIFocusEnvironment for UIView {}

#[cfg(all(feature = "UIFocus", feature = "UIResponder"))]
unsafe impl UIFocusItem for UIView {}

#[cfg(all(feature = "UIFocus", feature = "UIResponder"))]
unsafe impl UIFocusItemContainer for UIView {}

#[cfg(feature = "UIResponder")]
unsafe impl UIResponderStandardEditActions for UIView {}

#[cfg(all(feature = "UIResponder", feature = "UITraitCollection"))]
unsafe impl UITraitEnvironment for UIView {}

extern_methods!(
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method(layerClass)]
        pub fn layerClass(mtm: MainThreadMarker) -> &'static AnyClass;

        #[method_id(@__retain_semantics Init initWithFrame:)]
        pub fn initWithFrame(this: Allocated<Self>, frame: CGRect) -> Retained<Self>;

        #[method_id(@__retain_semantics Init initWithCoder:)]
        pub unsafe fn initWithCoder(
            this: Allocated<Self>,
            coder: &NSCoder,
        ) -> Option<Retained<Self>>;

        #[method(isUserInteractionEnabled)]
        pub unsafe fn isUserInteractionEnabled(&self) -> bool;

        #[method(setUserInteractionEnabled:)]
        pub unsafe fn setUserInteractionEnabled(&self, user_interaction_enabled: bool);

        #[method(tag)]
        pub unsafe fn tag(&self) -> NSInteger;

        #[method(setTag:)]
        pub unsafe fn setTag(&self, tag: NSInteger);

        #[cfg(feature = "objc2-quartz-core")]
        #[cfg(not(target_os = "watchos"))]
        #[method_id(@__retain_semantics Other layer)]
        pub fn layer(&self) -> Retained<CALayer>;

        #[method(canBecomeFocused)]
        pub unsafe fn canBecomeFocused(&self) -> bool;

        #[method(isFocused)]
        pub unsafe fn isFocused(&self) -> bool;

        #[method_id(@__retain_semantics Other focusGroupIdentifier)]
        pub unsafe fn focusGroupIdentifier(&self) -> Option<Retained<NSString>>;

        #[method(setFocusGroupIdentifier:)]
        pub unsafe fn setFocusGroupIdentifier(&self, focus_group_identifier: Option<&NSString>);

        #[cfg(feature = "UIFocus")]
        #[method(focusGroupPriority)]
        pub unsafe fn focusGroupPriority(&self) -> UIFocusGroupPriority;

        #[cfg(feature = "UIFocus")]
        #[method(setFocusGroupPriority:)]
        pub unsafe fn setFocusGroupPriority(&self, focus_group_priority: UIFocusGroupPriority);

        #[cfg(feature = "UIFocusEffect")]
        #[method_id(@__retain_semantics Other focusEffect)]
        pub unsafe fn focusEffect(&self) -> Option<Retained<UIFocusEffect>>;

        #[cfg(feature = "UIFocusEffect")]
        #[method(setFocusEffect:)]
        pub unsafe fn setFocusEffect(&self, focus_effect: Option<&UIFocusEffect>);

        #[method(semanticContentAttribute)]
        pub unsafe fn semanticContentAttribute(&self) -> UISemanticContentAttribute;

        #[method(setSemanticContentAttribute:)]
        pub unsafe fn setSemanticContentAttribute(
            &self,
            semantic_content_attribute: UISemanticContentAttribute,
        );

        #[cfg(feature = "UIInterface")]
        #[method(userInterfaceLayoutDirectionForSemanticContentAttribute:)]
        pub unsafe fn userInterfaceLayoutDirectionForSemanticContentAttribute(
            attribute: UISemanticContentAttribute,
            mtm: MainThreadMarker,
        ) -> UIUserInterfaceLayoutDirection;

        #[cfg(feature = "UIInterface")]
        #[method(userInterfaceLayoutDirectionForSemanticContentAttribute:relativeToLayoutDirection:)]
        pub unsafe fn userInterfaceLayoutDirectionForSemanticContentAttribute_relativeToLayoutDirection(
            semantic_content_attribute: UISemanticContentAttribute,
            layout_direction: UIUserInterfaceLayoutDirection,
            mtm: MainThreadMarker,
        ) -> UIUserInterfaceLayoutDirection;

        #[cfg(feature = "UIInterface")]
        #[method(effectiveUserInterfaceLayoutDirection)]
        pub unsafe fn effectiveUserInterfaceLayoutDirection(
            &self,
        ) -> UIUserInterfaceLayoutDirection;
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;

        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
    }
);

extern_methods!(
    /// UIViewGeometry
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method(frame)]
        pub fn frame(&self) -> CGRect;

        #[method(setFrame:)]
        pub fn setFrame(&self, frame: CGRect);

        #[method(bounds)]
        pub fn bounds(&self) -> CGRect;

        #[method(setBounds:)]
        pub fn setBounds(&self, bounds: CGRect);

        #[method(center)]
        pub unsafe fn center(&self) -> CGPoint;

        #[method(setCenter:)]
        pub unsafe fn setCenter(&self, center: CGPoint);

        #[cfg(feature = "objc2-quartz-core")]
        #[cfg(not(target_os = "watchos"))]
        #[method(transform3D)]
        pub unsafe fn transform3D(&self) -> CATransform3D;

        #[cfg(feature = "objc2-quartz-core")]
        #[cfg(not(target_os = "watchos"))]
        #[method(setTransform3D:)]
        pub unsafe fn setTransform3D(&self, transform3_d: CATransform3D);

        #[method(contentScaleFactor)]
        pub fn contentScaleFactor(&self) -> CGFloat;

        #[method(setContentScaleFactor:)]
        pub fn setContentScaleFactor(&self, content_scale_factor: CGFloat);

        #[method(anchorPoint)]
        pub unsafe fn anchorPoint(&self) -> CGPoint;

        #[method(setAnchorPoint:)]
        pub unsafe fn setAnchorPoint(&self, anchor_point: CGPoint);

        #[method(isMultipleTouchEnabled)]
        pub unsafe fn isMultipleTouchEnabled(&self) -> bool;

        #[method(setMultipleTouchEnabled:)]
        pub fn setMultipleTouchEnabled(&self, multiple_touch_enabled: bool);

        #[method(isExclusiveTouch)]
        pub unsafe fn isExclusiveTouch(&self) -> bool;

        #[method(setExclusiveTouch:)]
        pub unsafe fn setExclusiveTouch(&self, exclusive_touch: bool);

        #[cfg(feature = "UIEvent")]
        #[method_id(@__retain_semantics Other hitTest:withEvent:)]
        pub unsafe fn hitTest_withEvent(
            &self,
            point: CGPoint,
            event: Option<&UIEvent>,
        ) -> Option<Retained<UIView>>;

        #[cfg(feature = "UIEvent")]
        #[method(pointInside:withEvent:)]
        pub unsafe fn pointInside_withEvent(&self, point: CGPoint, event: Option<&UIEvent>)
            -> bool;

        #[method(convertPoint:toView:)]
        pub unsafe fn convertPoint_toView(&self, point: CGPoint, view: Option<&UIView>) -> CGPoint;

        #[method(convertPoint:fromView:)]
        pub unsafe fn convertPoint_fromView(
            &self,
            point: CGPoint,
            view: Option<&UIView>,
        ) -> CGPoint;

        #[method(convertRect:toView:)]
        pub unsafe fn convertRect_toView(&self, rect: CGRect, view: Option<&UIView>) -> CGRect;

        #[method(convertRect:fromView:)]
        pub unsafe fn convertRect_fromView(&self, rect: CGRect, view: Option<&UIView>) -> CGRect;

        #[method(autoresizesSubviews)]
        pub unsafe fn autoresizesSubviews(&self) -> bool;

        #[method(setAutoresizesSubviews:)]
        pub unsafe fn setAutoresizesSubviews(&self, autoresizes_subviews: bool);

        #[method(autoresizingMask)]
        pub unsafe fn autoresizingMask(&self) -> UIViewAutoresizing;

        #[method(setAutoresizingMask:)]
        pub unsafe fn setAutoresizingMask(&self, autoresizing_mask: UIViewAutoresizing);

        #[method(sizeThatFits:)]
        pub unsafe fn sizeThatFits(&self, size: CGSize) -> CGSize;

        #[method(sizeToFit)]
        pub unsafe fn sizeToFit(&self);
    }
);

extern_methods!(
    /// UIViewHierarchy
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method_id(@__retain_semantics Other superview)]
        pub fn superview(&self) -> Option<Retained<UIView>>;

        #[method_id(@__retain_semantics Other subviews)]
        pub fn subviews(&self) -> Retained<NSArray<UIView>>;

        #[cfg(feature = "UIWindow")]
        #[method_id(@__retain_semantics Other window)]
        pub fn window(&self) -> Option<Retained<UIWindow>>;

        #[method(removeFromSuperview)]
        pub unsafe fn removeFromSuperview(&self);

        #[method(insertSubview:atIndex:)]
        pub unsafe fn insertSubview_atIndex(&self, view: &UIView, index: NSInteger);

        #[method(exchangeSubviewAtIndex:withSubviewAtIndex:)]
        pub unsafe fn exchangeSubviewAtIndex_withSubviewAtIndex(
            &self,
            index1: NSInteger,
            index2: NSInteger,
        );

        #[method(addSubview:)]
        pub unsafe fn addSubview(&self, view: &UIView);

        #[method(insertSubview:belowSubview:)]
        pub unsafe fn insertSubview_belowSubview(&self, view: &UIView, sibling_subview: &UIView);

        #[method(insertSubview:aboveSubview:)]
        pub unsafe fn insertSubview_aboveSubview(&self, view: &UIView, sibling_subview: &UIView);

        #[method(bringSubviewToFront:)]
        pub unsafe fn bringSubviewToFront(&self, view: &UIView);

        #[method(sendSubviewToBack:)]
        pub unsafe fn sendSubviewToBack(&self, view: &UIView);

        #[method(didAddSubview:)]
        pub unsafe fn didAddSubview(&self, subview: &UIView);

        #[method(willRemoveSubview:)]
        pub unsafe fn willRemoveSubview(&self, subview: &UIView);

        #[method(willMoveToSuperview:)]
        pub unsafe fn willMoveToSuperview(&self, new_superview: Option<&UIView>);

        #[method(didMoveToSuperview)]
        pub unsafe fn didMoveToSuperview(&self);

        #[cfg(feature = "UIWindow")]
        #[method(willMoveToWindow:)]
        pub unsafe fn willMoveToWindow(&self, new_window: Option<&UIWindow>);

        #[method(didMoveToWindow)]
        pub unsafe fn didMoveToWindow(&self);

        #[method(isDescendantOfView:)]
        pub unsafe fn isDescendantOfView(&self, view: &UIView) -> bool;

        #[method_id(@__retain_semantics Other viewWithTag:)]
        pub unsafe fn viewWithTag(&self, tag: NSInteger) -> Option<Retained<UIView>>;

        #[method(setNeedsLayout)]
        pub unsafe fn setNeedsLayout(&self);

        #[method(layoutIfNeeded)]
        pub unsafe fn layoutIfNeeded(&self);

        #[method(layoutSubviews)]
        pub unsafe fn layoutSubviews(&self);

        #[cfg(feature = "UIGeometry")]
        #[method(layoutMargins)]
        pub unsafe fn layoutMargins(&self) -> UIEdgeInsets;

        #[cfg(feature = "UIGeometry")]
        #[method(setLayoutMargins:)]
        pub unsafe fn setLayoutMargins(&self, layout_margins: UIEdgeInsets);

        #[cfg(feature = "UIGeometry")]
        #[method(directionalLayoutMargins)]
        pub unsafe fn directionalLayoutMargins(&self) -> NSDirectionalEdgeInsets;

        #[cfg(feature = "UIGeometry")]
        #[method(setDirectionalLayoutMargins:)]
        pub unsafe fn setDirectionalLayoutMargins(
            &self,
            directional_layout_margins: NSDirectionalEdgeInsets,
        );

        #[method(preservesSuperviewLayoutMargins)]
        pub unsafe fn preservesSuperviewLayoutMargins(&self) -> bool;

        #[method(setPreservesSuperviewLayoutMargins:)]
        pub unsafe fn setPreservesSuperviewLayoutMargins(
            &self,
            preserves_superview_layout_margins: bool,
        );

        #[method(insetsLayoutMarginsFromSafeArea)]
        pub unsafe fn insetsLayoutMarginsFromSafeArea(&self) -> bool;

        #[method(setInsetsLayoutMarginsFromSafeArea:)]
        pub unsafe fn setInsetsLayoutMarginsFromSafeArea(
            &self,
            insets_layout_margins_from_safe_area: bool,
        );

        #[method(layoutMarginsDidChange)]
        pub unsafe fn layoutMarginsDidChange(&self);

        #[cfg(feature = "UIGeometry")]
        #[method(safeAreaInsets)]
        pub fn safeAreaInsets(&self) -> UIEdgeInsets;

        #[method(safeAreaInsetsDidChange)]
        pub unsafe fn safeAreaInsetsDidChange(&self);

        #[cfg(feature = "UILayoutGuide")]
        #[method_id(@__retain_semantics Other layoutMarginsGuide)]
        pub unsafe fn layoutMarginsGuide(&self) -> Retained<UILayoutGuide>;

        #[cfg(feature = "UILayoutGuide")]
        #[method_id(@__retain_semantics Other readableContentGuide)]
        pub unsafe fn readableContentGuide(&self) -> Retained<UILayoutGuide>;

        #[cfg(feature = "UILayoutGuide")]
        #[method_id(@__retain_semantics Other safeAreaLayoutGuide)]
        pub unsafe fn safeAreaLayoutGuide(&self) -> Retained<UILayoutGuide>;

        #[cfg(all(
            feature = "UIKeyboardLayoutGuide",
            feature = "UILayoutGuide",
            feature = "UITrackingLayoutGuide"
        ))]
        #[method_id(@__retain_semantics Other keyboardLayoutGuide)]
        pub unsafe fn keyboardLayoutGuide(&self) -> Retained<UIKeyboardLayoutGuide>;
    }
);

extern_methods!(
    /// UIViewRendering
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method(drawRect:)]
        pub unsafe fn drawRect(&self, rect: CGRect);

        #[method(setNeedsDisplay)]
        pub fn setNeedsDisplay(&self);

        #[method(setNeedsDisplayInRect:)]
        pub unsafe fn setNeedsDisplayInRect(&self, rect: CGRect);

        #[method(clipsToBounds)]
        pub unsafe fn clipsToBounds(&self) -> bool;

        #[method(setClipsToBounds:)]
        pub unsafe fn setClipsToBounds(&self, clips_to_bounds: bool);

        #[cfg(feature = "UIColor")]
        #[method_id(@__retain_semantics Other backgroundColor)]
        pub fn backgroundColor(&self) -> Option<Retained<UIColor>>;

        #[cfg(feature = "UIColor")]
        #[method(setBackgroundColor:)]
        pub fn setBackgroundColor(&self, background_color: Option<&UIColor>);

        #[method(alpha)]
        pub unsafe fn alpha(&self) -> CGFloat;

        #[method(setAlpha:)]
        pub unsafe fn setAlpha(&self, alpha: CGFloat);

        #[method(isOpaque)]
        pub unsafe fn isOpaque(&self) -> bool;

        #[method(setOpaque:)]
        pub unsafe fn setOpaque(&self, opaque: bool);

        #[method(clearsContextBeforeDrawing)]
        pub unsafe fn clearsContextBeforeDrawing(&self) -> bool;

        #[method(setClearsContextBeforeDrawing:)]
        pub unsafe fn setClearsContextBeforeDrawing(&self, clears_context_before_drawing: bool);

        #[method(isHidden)]
        pub fn isHidden(&self) -> bool;

        #[method(setHidden:)]
        pub fn setHidden(&self, hidden: bool);

        #[method(contentMode)]
        pub unsafe fn contentMode(&self) -> UIViewContentMode;

        #[method(setContentMode:)]
        pub unsafe fn setContentMode(&self, content_mode: UIViewContentMode);

        #[deprecated]
        #[method(contentStretch)]
        pub unsafe fn contentStretch(&self) -> CGRect;

        #[deprecated]
        #[method(setContentStretch:)]
        pub unsafe fn setContentStretch(&self, content_stretch: CGRect);

        #[method_id(@__retain_semantics Other maskView)]
        pub unsafe fn maskView(&self) -> Option<Retained<UIView>>;

        #[method(setMaskView:)]
        pub unsafe fn setMaskView(&self, mask_view: Option<&UIView>);

        #[cfg(feature = "UIColor")]
        #[method_id(@__retain_semantics Other tintColor)]
        pub unsafe fn tintColor(&self) -> Option<Retained<UIColor>>;

        #[cfg(feature = "UIColor")]
        #[method(setTintColor:)]
        pub unsafe fn setTintColor(&self, tint_color: Option<&UIColor>);

        #[method(tintAdjustmentMode)]
        pub unsafe fn tintAdjustmentMode(&self) -> UIViewTintAdjustmentMode;

        #[method(setTintAdjustmentMode:)]
        pub unsafe fn setTintAdjustmentMode(&self, tint_adjustment_mode: UIViewTintAdjustmentMode);

        #[method(tintColorDidChange)]
        pub unsafe fn tintColorDidChange(&self);
    }
);

extern_methods!(
    /// UIViewAnimation
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method(setAnimationsEnabled:)]
        pub unsafe fn setAnimationsEnabled(enabled: bool, mtm: MainThreadMarker);

        #[method(areAnimationsEnabled)]
        pub unsafe fn areAnimationsEnabled(mtm: MainThreadMarker) -> bool;

        #[cfg(feature = "block2")]
        #[method(performWithoutAnimation:)]
        pub unsafe fn performWithoutAnimation(
            actions_without_animation: &block2::Block<dyn Fn() + '_>,
            mtm: MainThreadMarker,
        );

        #[method(inheritedAnimationDuration)]
        pub unsafe fn inheritedAnimationDuration(mtm: MainThreadMarker) -> NSTimeInterval;
    }
);

extern_methods!(
    /// UIViewAnimationWithBlocks
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "block2")]
        #[method(animateWithDuration:delay:options:animations:completion:)]
        pub unsafe fn animateWithDuration_delay_options_animations_completion(
            duration: NSTimeInterval,
            delay: NSTimeInterval,
            options: UIViewAnimationOptions,
            animations: &block2::Block<dyn Fn()>,
            completion: Option<&block2::Block<dyn Fn(Bool)>>,
            mtm: MainThreadMarker,
        );

        #[cfg(feature = "block2")]
        #[method(animateWithDuration:animations:completion:)]
        pub unsafe fn animateWithDuration_animations_completion(
            duration: NSTimeInterval,
            animations: &block2::Block<dyn Fn()>,
            completion: Option<&block2::Block<dyn Fn(Bool)>>,
            mtm: MainThreadMarker,
        );

        #[cfg(feature = "block2")]
        #[method(animateWithDuration:animations:)]
        pub unsafe fn animateWithDuration_animations(
            duration: NSTimeInterval,
            animations: &block2::Block<dyn Fn()>,
            mtm: MainThreadMarker,
        );

        #[cfg(feature = "block2")]
        #[method(animateWithSpringDuration:bounce:initialSpringVelocity:delay:options:animations:completion:)]
        pub unsafe fn animateWithSpringDuration_bounce_initialSpringVelocity_delay_options_animations_completion(
            duration: NSTimeInterval,
            bounce: CGFloat,
            velocity: CGFloat,
            delay: NSTimeInterval,
            options: UIViewAnimationOptions,
            animations: &block2::Block<dyn Fn() + '_>,
            completion: Option<&block2::Block<dyn Fn(Bool)>>,
            mtm: MainThreadMarker,
        );

        #[cfg(feature = "block2")]
        #[method(animateWithDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)]
        pub unsafe fn animateWithDuration_delay_usingSpringWithDamping_initialSpringVelocity_options_animations_completion(
            duration: NSTimeInterval,
            delay: NSTimeInterval,
            damping_ratio: CGFloat,
            velocity: CGFloat,
            options: UIViewAnimationOptions,
            animations: &block2::Block<dyn Fn()>,
            completion: Option<&block2::Block<dyn Fn(Bool)>>,
            mtm: MainThreadMarker,
        );

        #[cfg(feature = "block2")]
        #[method(transitionWithView:duration:options:animations:completion:)]
        pub unsafe fn transitionWithView_duration_options_animations_completion(
            view: &UIView,
            duration: NSTimeInterval,
            options: UIViewAnimationOptions,
            animations: Option<&block2::Block<dyn Fn()>>,
            completion: Option<&block2::Block<dyn Fn(Bool)>>,
        );

        #[cfg(feature = "block2")]
        #[method(transitionFromView:toView:duration:options:completion:)]
        pub unsafe fn transitionFromView_toView_duration_options_completion(
            from_view: &UIView,
            to_view: &UIView,
            duration: NSTimeInterval,
            options: UIViewAnimationOptions,
            completion: Option<&block2::Block<dyn Fn(Bool)>>,
        );

        #[cfg(feature = "block2")]
        #[method(performSystemAnimation:onViews:options:animations:completion:)]
        pub unsafe fn performSystemAnimation_onViews_options_animations_completion(
            animation: UISystemAnimation,
            views: &NSArray<UIView>,
            options: UIViewAnimationOptions,
            parallel_animations: Option<&block2::Block<dyn Fn()>>,
            completion: Option<&block2::Block<dyn Fn(Bool)>>,
            mtm: MainThreadMarker,
        );

        #[cfg(feature = "block2")]
        #[method(modifyAnimationsWithRepeatCount:autoreverses:animations:)]
        pub unsafe fn modifyAnimationsWithRepeatCount_autoreverses_animations(
            count: CGFloat,
            autoreverses: bool,
            animations: &block2::Block<dyn Fn() + '_>,
            mtm: MainThreadMarker,
        );
    }
);

extern_methods!(
    /// UIViewKeyframeAnimations
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "block2")]
        #[method(animateKeyframesWithDuration:delay:options:animations:completion:)]
        pub unsafe fn animateKeyframesWithDuration_delay_options_animations_completion(
            duration: NSTimeInterval,
            delay: NSTimeInterval,
            options: UIViewKeyframeAnimationOptions,
            animations: &block2::Block<dyn Fn()>,
            completion: Option<&block2::Block<dyn Fn(Bool)>>,
            mtm: MainThreadMarker,
        );

        #[cfg(feature = "block2")]
        #[method(addKeyframeWithRelativeStartTime:relativeDuration:animations:)]
        pub unsafe fn addKeyframeWithRelativeStartTime_relativeDuration_animations(
            frame_start_time: c_double,
            frame_duration: c_double,
            animations: &block2::Block<dyn Fn()>,
            mtm: MainThreadMarker,
        );
    }
);

extern_methods!(
    /// UIViewGestureRecognizers
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "UIGestureRecognizer")]
        #[method_id(@__retain_semantics Other gestureRecognizers)]
        pub fn gestureRecognizers(&self) -> Option<Retained<NSArray<UIGestureRecognizer>>>;

        #[cfg(feature = "UIGestureRecognizer")]
        #[method(setGestureRecognizers:)]
        pub unsafe fn setGestureRecognizers(
            &self,
            gesture_recognizers: Option<&NSArray<UIGestureRecognizer>>,
        );

        #[cfg(feature = "UIGestureRecognizer")]
        #[method(addGestureRecognizer:)]
        pub fn addGestureRecognizer(&self, gesture_recognizer: &UIGestureRecognizer);

        #[cfg(feature = "UIGestureRecognizer")]
        #[method(removeGestureRecognizer:)]
        pub fn removeGestureRecognizer(&self, gesture_recognizer: &UIGestureRecognizer);

        #[cfg(feature = "UIGestureRecognizer")]
        #[method(gestureRecognizerShouldBegin:)]
        pub fn gestureRecognizerShouldBegin(
            &self,
            gesture_recognizer: &UIGestureRecognizer,
        ) -> bool;
    }
);

extern_methods!(
    /// UIViewMotionEffects
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "UIMotionEffect")]
        #[method(addMotionEffect:)]
        pub unsafe fn addMotionEffect(&self, effect: &UIMotionEffect);

        #[cfg(feature = "UIMotionEffect")]
        #[method(removeMotionEffect:)]
        pub unsafe fn removeMotionEffect(&self, effect: &UIMotionEffect);

        #[cfg(feature = "UIMotionEffect")]
        #[method_id(@__retain_semantics Other motionEffects)]
        pub unsafe fn motionEffects(&self) -> Retained<NSArray<UIMotionEffect>>;

        #[cfg(feature = "UIMotionEffect")]
        #[method(setMotionEffects:)]
        pub unsafe fn setMotionEffects(&self, motion_effects: &NSArray<UIMotionEffect>);
    }
);

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UILayoutConstraintAxis(pub NSInteger);
impl UILayoutConstraintAxis {
    #[doc(alias = "UILayoutConstraintAxisHorizontal")]
    pub const Horizontal: Self = Self(0);
    #[doc(alias = "UILayoutConstraintAxisVertical")]
    pub const Vertical: Self = Self(1);
}

unsafe impl Encode for UILayoutConstraintAxis {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UILayoutConstraintAxis {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

extern_methods!(
    /// UIConstraintBasedLayoutInstallingConstraints
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "NSLayoutConstraint")]
        #[method_id(@__retain_semantics Other constraints)]
        pub unsafe fn constraints(&self) -> Retained<NSArray<NSLayoutConstraint>>;

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(addConstraint:)]
        pub unsafe fn addConstraint(&self, constraint: &NSLayoutConstraint);

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(addConstraints:)]
        pub unsafe fn addConstraints(&self, constraints: &NSArray<NSLayoutConstraint>);

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(removeConstraint:)]
        pub unsafe fn removeConstraint(&self, constraint: &NSLayoutConstraint);

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(removeConstraints:)]
        pub unsafe fn removeConstraints(&self, constraints: &NSArray<NSLayoutConstraint>);
    }
);

extern_methods!(
    /// UIConstraintBasedLayoutCoreMethods
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method(updateConstraintsIfNeeded)]
        pub unsafe fn updateConstraintsIfNeeded(&self);

        #[method(updateConstraints)]
        pub unsafe fn updateConstraints(&self);

        #[method(needsUpdateConstraints)]
        pub unsafe fn needsUpdateConstraints(&self) -> bool;

        #[method(setNeedsUpdateConstraints)]
        pub unsafe fn setNeedsUpdateConstraints(&self);
    }
);

extern_methods!(
    /// UIConstraintBasedCompatibility
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method(translatesAutoresizingMaskIntoConstraints)]
        pub unsafe fn translatesAutoresizingMaskIntoConstraints(&self) -> bool;

        #[method(setTranslatesAutoresizingMaskIntoConstraints:)]
        pub unsafe fn setTranslatesAutoresizingMaskIntoConstraints(
            &self,
            translates_autoresizing_mask_into_constraints: bool,
        );

        #[method(requiresConstraintBasedLayout)]
        pub unsafe fn requiresConstraintBasedLayout(mtm: MainThreadMarker) -> bool;
    }
);

extern "C" {
    pub static UIViewNoIntrinsicMetric: CGFloat;
}

extern_methods!(
    /// UIConstraintBasedLayoutLayering
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method(alignmentRectForFrame:)]
        pub unsafe fn alignmentRectForFrame(&self, frame: CGRect) -> CGRect;

        #[method(frameForAlignmentRect:)]
        pub unsafe fn frameForAlignmentRect(&self, alignment_rect: CGRect) -> CGRect;

        #[cfg(feature = "UIGeometry")]
        #[method(alignmentRectInsets)]
        pub unsafe fn alignmentRectInsets(&self) -> UIEdgeInsets;

        #[deprecated = "Override -viewForFirstBaselineLayout or -viewForLastBaselineLayout as appropriate, instead"]
        #[method_id(@__retain_semantics Other viewForBaselineLayout)]
        pub unsafe fn viewForBaselineLayout(&self) -> Retained<UIView>;

        #[method_id(@__retain_semantics Other viewForFirstBaselineLayout)]
        pub unsafe fn viewForFirstBaselineLayout(&self) -> Retained<UIView>;

        #[method_id(@__retain_semantics Other viewForLastBaselineLayout)]
        pub unsafe fn viewForLastBaselineLayout(&self) -> Retained<UIView>;

        #[method(intrinsicContentSize)]
        pub unsafe fn intrinsicContentSize(&self) -> CGSize;

        #[method(invalidateIntrinsicContentSize)]
        pub unsafe fn invalidateIntrinsicContentSize(&self);

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(contentHuggingPriorityForAxis:)]
        pub unsafe fn contentHuggingPriorityForAxis(
            &self,
            axis: UILayoutConstraintAxis,
        ) -> UILayoutPriority;

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(setContentHuggingPriority:forAxis:)]
        pub unsafe fn setContentHuggingPriority_forAxis(
            &self,
            priority: UILayoutPriority,
            axis: UILayoutConstraintAxis,
        );

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(contentCompressionResistancePriorityForAxis:)]
        pub unsafe fn contentCompressionResistancePriorityForAxis(
            &self,
            axis: UILayoutConstraintAxis,
        ) -> UILayoutPriority;

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(setContentCompressionResistancePriority:forAxis:)]
        pub unsafe fn setContentCompressionResistancePriority_forAxis(
            &self,
            priority: UILayoutPriority,
            axis: UILayoutConstraintAxis,
        );
    }
);

extern "C" {
    pub static UILayoutFittingCompressedSize: CGSize;
}

extern "C" {
    pub static UILayoutFittingExpandedSize: CGSize;
}

extern_methods!(
    /// UIConstraintBasedLayoutFittingSize
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method(systemLayoutSizeFittingSize:)]
        pub unsafe fn systemLayoutSizeFittingSize(&self, target_size: CGSize) -> CGSize;

        #[cfg(feature = "NSLayoutConstraint")]
        #[method(systemLayoutSizeFittingSize:withHorizontalFittingPriority:verticalFittingPriority:)]
        pub unsafe fn systemLayoutSizeFittingSize_withHorizontalFittingPriority_verticalFittingPriority(
            &self,
            target_size: CGSize,
            horizontal_fitting_priority: UILayoutPriority,
            vertical_fitting_priority: UILayoutPriority,
        ) -> CGSize;
    }
);

extern_methods!(
    /// UILayoutGuideSupport
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "UILayoutGuide")]
        #[method_id(@__retain_semantics Other layoutGuides)]
        pub unsafe fn layoutGuides(&self) -> Retained<NSArray<UILayoutGuide>>;

        #[cfg(feature = "UILayoutGuide")]
        #[method(addLayoutGuide:)]
        pub unsafe fn addLayoutGuide(&self, layout_guide: &UILayoutGuide);

        #[cfg(feature = "UILayoutGuide")]
        #[method(removeLayoutGuide:)]
        pub unsafe fn removeLayoutGuide(&self, layout_guide: &UILayoutGuide);
    }
);

extern_methods!(
    /// UIViewLayoutConstraintCreation
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other leadingAnchor)]
        pub unsafe fn leadingAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other trailingAnchor)]
        pub unsafe fn trailingAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other leftAnchor)]
        pub unsafe fn leftAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other rightAnchor)]
        pub unsafe fn rightAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other topAnchor)]
        pub unsafe fn topAnchor(&self) -> Retained<NSLayoutYAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other bottomAnchor)]
        pub unsafe fn bottomAnchor(&self) -> Retained<NSLayoutYAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other widthAnchor)]
        pub unsafe fn widthAnchor(&self) -> Retained<NSLayoutDimension>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other heightAnchor)]
        pub unsafe fn heightAnchor(&self) -> Retained<NSLayoutDimension>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other centerXAnchor)]
        pub unsafe fn centerXAnchor(&self) -> Retained<NSLayoutXAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other centerYAnchor)]
        pub unsafe fn centerYAnchor(&self) -> Retained<NSLayoutYAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other firstBaselineAnchor)]
        pub unsafe fn firstBaselineAnchor(&self) -> Retained<NSLayoutYAxisAnchor>;

        #[cfg(feature = "NSLayoutAnchor")]
        #[method_id(@__retain_semantics Other lastBaselineAnchor)]
        pub unsafe fn lastBaselineAnchor(&self) -> Retained<NSLayoutYAxisAnchor>;
    }
);

extern_methods!(
    /// UIConstraintBasedLayoutDebugging
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "NSLayoutConstraint")]
        #[method_id(@__retain_semantics Other constraintsAffectingLayoutForAxis:)]
        pub unsafe fn constraintsAffectingLayoutForAxis(
            &self,
            axis: UILayoutConstraintAxis,
        ) -> Retained<NSArray<NSLayoutConstraint>>;

        #[method(hasAmbiguousLayout)]
        pub unsafe fn hasAmbiguousLayout(&self) -> bool;

        #[method(exerciseAmbiguityInLayout)]
        pub unsafe fn exerciseAmbiguityInLayout(&self);
    }
);

extern_methods!(
    /// UIConstraintBasedLayoutDebugging
    #[cfg(feature = "UILayoutGuide")]
    unsafe impl UILayoutGuide {
        #[cfg(feature = "NSLayoutConstraint")]
        #[method_id(@__retain_semantics Other constraintsAffectingLayoutForAxis:)]
        pub unsafe fn constraintsAffectingLayoutForAxis(
            &self,
            axis: UILayoutConstraintAxis,
        ) -> Retained<NSArray<NSLayoutConstraint>>;

        #[method(hasAmbiguousLayout)]
        pub unsafe fn hasAmbiguousLayout(&self) -> bool;
    }
);

extern_methods!(
    /// UIStateRestoration
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method_id(@__retain_semantics Other restorationIdentifier)]
        pub unsafe fn restorationIdentifier(&self) -> Option<Retained<NSString>>;

        #[method(setRestorationIdentifier:)]
        pub unsafe fn setRestorationIdentifier(&self, restoration_identifier: Option<&NSString>);

        #[method(encodeRestorableStateWithCoder:)]
        pub unsafe fn encodeRestorableStateWithCoder(&self, coder: &NSCoder);

        #[method(decodeRestorableStateWithCoder:)]
        pub unsafe fn decodeRestorableStateWithCoder(&self, coder: &NSCoder);
    }
);

extern_methods!(
    /// UISnapshotting
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[method_id(@__retain_semantics Other snapshotViewAfterScreenUpdates:)]
        pub unsafe fn snapshotViewAfterScreenUpdates(
            &self,
            after_updates: bool,
        ) -> Option<Retained<UIView>>;

        #[cfg(feature = "UIGeometry")]
        #[method_id(@__retain_semantics Other resizableSnapshotViewFromRect:afterScreenUpdates:withCapInsets:)]
        pub unsafe fn resizableSnapshotViewFromRect_afterScreenUpdates_withCapInsets(
            &self,
            rect: CGRect,
            after_updates: bool,
            cap_insets: UIEdgeInsets,
        ) -> Option<Retained<UIView>>;

        #[method(drawViewHierarchyInRect:afterScreenUpdates:)]
        pub unsafe fn drawViewHierarchyInRect_afterScreenUpdates(
            &self,
            rect: CGRect,
            after_updates: bool,
        ) -> bool;
    }
);

extern_methods!(
    /// DeprecatedAnimations
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[deprecated = "Use the block-based animation API instead"]
        #[method(beginAnimations:context:)]
        pub unsafe fn beginAnimations_context(
            animation_id: Option<&NSString>,
            context: *mut c_void,
            mtm: MainThreadMarker,
        );

        #[deprecated = "Use the block-based animation API instead"]
        #[method(commitAnimations)]
        pub unsafe fn commitAnimations(mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationDelegate:)]
        pub unsafe fn setAnimationDelegate(delegate: Option<&AnyObject>, mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationWillStartSelector:)]
        pub unsafe fn setAnimationWillStartSelector(selector: Option<Sel>, mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationDidStopSelector:)]
        pub unsafe fn setAnimationDidStopSelector(selector: Option<Sel>, mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationDuration:)]
        pub unsafe fn setAnimationDuration(duration: NSTimeInterval, mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationDelay:)]
        pub unsafe fn setAnimationDelay(delay: NSTimeInterval, mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationStartDate:)]
        pub unsafe fn setAnimationStartDate(start_date: &NSDate, mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationCurve:)]
        pub unsafe fn setAnimationCurve(curve: UIViewAnimationCurve, mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationRepeatCount:)]
        pub unsafe fn setAnimationRepeatCount(repeat_count: c_float, mtm: MainThreadMarker);

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationRepeatAutoreverses:)]
        pub unsafe fn setAnimationRepeatAutoreverses(
            repeat_autoreverses: bool,
            mtm: MainThreadMarker,
        );

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationBeginsFromCurrentState:)]
        pub unsafe fn setAnimationBeginsFromCurrentState(
            from_current_state: bool,
            mtm: MainThreadMarker,
        );

        #[deprecated = "Use the block-based animation API instead"]
        #[method(setAnimationTransition:forView:cache:)]
        pub unsafe fn setAnimationTransition_forView_cache(
            transition: UIViewAnimationTransition,
            view: &UIView,
            cache: bool,
        );
    }
);

extern_methods!(
    /// UserInterfaceStyle
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "UIInterface")]
        #[method(overrideUserInterfaceStyle)]
        pub unsafe fn overrideUserInterfaceStyle(&self) -> UIUserInterfaceStyle;

        #[cfg(feature = "UIInterface")]
        #[method(setOverrideUserInterfaceStyle:)]
        pub unsafe fn setOverrideUserInterfaceStyle(
            &self,
            override_user_interface_style: UIUserInterfaceStyle,
        );
    }
);

extern_methods!(
    /// UIContentSizeCategoryLimit
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "UIContentSizeCategory")]
        #[method_id(@__retain_semantics Other minimumContentSizeCategory)]
        pub unsafe fn minimumContentSizeCategory(&self) -> Option<Retained<UIContentSizeCategory>>;

        #[cfg(feature = "UIContentSizeCategory")]
        #[method(setMinimumContentSizeCategory:)]
        pub unsafe fn setMinimumContentSizeCategory(
            &self,
            minimum_content_size_category: Option<&UIContentSizeCategory>,
        );

        #[cfg(feature = "UIContentSizeCategory")]
        #[method_id(@__retain_semantics Other maximumContentSizeCategory)]
        pub unsafe fn maximumContentSizeCategory(&self) -> Option<Retained<UIContentSizeCategory>>;

        #[cfg(feature = "UIContentSizeCategory")]
        #[method(setMaximumContentSizeCategory:)]
        pub unsafe fn setMaximumContentSizeCategory(
            &self,
            maximum_content_size_category: Option<&UIContentSizeCategory>,
        );

        #[method_id(@__retain_semantics Other appliedContentSizeCategoryLimitsDescription)]
        pub unsafe fn appliedContentSizeCategoryLimitsDescription(&self) -> Retained<NSString>;
    }
);

extern_methods!(
    #[cfg(feature = "UIResponder")]
    unsafe impl UIView {
        #[cfg(feature = "UITraitCollection")]
        #[method_id(@__retain_semantics Other traitOverrides)]
        pub unsafe fn traitOverrides(&self) -> Retained<ProtocolObject<dyn UITraitOverrides>>;

        #[method(updateTraitsIfNeeded)]
        pub unsafe fn updateTraitsIfNeeded(&self);
    }
);

#[cfg(all(feature = "UIResponder", feature = "UITraitCollection"))]
unsafe impl UITraitChangeObservable for UIView {}