objc2-ui-kit 0.3.2

Bindings to the UIKit framework
Documentation
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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
#[cfg(feature = "objc2-core-foundation")]
use objc2_core_foundation::*;

use crate::*;

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uibarstyle?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIBarStyle(pub NSInteger);
impl UIBarStyle {
    #[doc(alias = "UIBarStyleDefault")]
    pub const Default: Self = Self(0);
    #[doc(alias = "UIBarStyleBlack")]
    pub const Black: Self = Self(1);
    #[doc(alias = "UIBarStyleBlackOpaque")]
    #[deprecated = "Use UIBarStyleBlack instead."]
    pub const BlackOpaque: Self = Self(1);
    #[doc(alias = "UIBarStyleBlackTranslucent")]
    #[deprecated = "Use UIBarStyleBlack and set the translucent property to YES instead."]
    pub const BlackTranslucent: Self = Self(2);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uiuserinterfacesizeclass?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIUserInterfaceSizeClass(pub NSInteger);
impl UIUserInterfaceSizeClass {
    #[doc(alias = "UIUserInterfaceSizeClassUnspecified")]
    pub const Unspecified: Self = Self(0);
    #[doc(alias = "UIUserInterfaceSizeClassCompact")]
    pub const Compact: Self = Self(1);
    #[doc(alias = "UIUserInterfaceSizeClassRegular")]
    pub const Regular: Self = Self(2);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uiuserinterfacestyle?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIUserInterfaceStyle(pub NSInteger);
impl UIUserInterfaceStyle {
    #[doc(alias = "UIUserInterfaceStyleUnspecified")]
    pub const Unspecified: Self = Self(0);
    #[doc(alias = "UIUserInterfaceStyleLight")]
    pub const Light: Self = Self(1);
    #[doc(alias = "UIUserInterfaceStyleDark")]
    pub const Dark: Self = Self(2);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uiuserinterfacelayoutdirection?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIUserInterfaceLayoutDirection(pub NSInteger);
impl UIUserInterfaceLayoutDirection {
    #[doc(alias = "UIUserInterfaceLayoutDirectionLeftToRight")]
    pub const LeftToRight: Self = Self(0);
    #[doc(alias = "UIUserInterfaceLayoutDirectionRightToLeft")]
    pub const RightToLeft: Self = Self(1);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uitraitenvironmentlayoutdirection?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITraitEnvironmentLayoutDirection(pub NSInteger);
impl UITraitEnvironmentLayoutDirection {
    #[doc(alias = "UITraitEnvironmentLayoutDirectionUnspecified")]
    pub const Unspecified: Self = Self(-1);
    #[doc(alias = "UITraitEnvironmentLayoutDirectionLeftToRight")]
    pub const LeftToRight: Self = Self(UIUserInterfaceLayoutDirection::LeftToRight.0);
    #[doc(alias = "UITraitEnvironmentLayoutDirectionRightToLeft")]
    pub const RightToLeft: Self = Self(UIUserInterfaceLayoutDirection::RightToLeft.0);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uidisplaygamut?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIDisplayGamut(pub NSInteger);
impl UIDisplayGamut {
    #[doc(alias = "UIDisplayGamutUnspecified")]
    pub const Unspecified: Self = Self(-1);
    #[doc(alias = "UIDisplayGamutSRGB")]
    pub const SRGB: Self = Self(0);
    #[doc(alias = "UIDisplayGamutP3")]
    pub const P3: Self = Self(1);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uiaccessibilitycontrast?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIAccessibilityContrast(pub NSInteger);
impl UIAccessibilityContrast {
    #[doc(alias = "UIAccessibilityContrastUnspecified")]
    pub const Unspecified: Self = Self(-1);
    #[doc(alias = "UIAccessibilityContrastNormal")]
    pub const Normal: Self = Self(0);
    #[doc(alias = "UIAccessibilityContrastHigh")]
    pub const High: Self = Self(1);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uilegibilityweight?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UILegibilityWeight(pub NSInteger);
impl UILegibilityWeight {
    #[doc(alias = "UILegibilityWeightUnspecified")]
    pub const Unspecified: Self = Self(-1);
    #[doc(alias = "UILegibilityWeightRegular")]
    pub const Regular: Self = Self(0);
    #[doc(alias = "UILegibilityWeightBold")]
    pub const Bold: Self = Self(1);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uiuserinterfacelevel?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIUserInterfaceLevel(pub NSInteger);
impl UIUserInterfaceLevel {
    #[doc(alias = "UIUserInterfaceLevelUnspecified")]
    pub const Unspecified: Self = Self(-1);
    #[doc(alias = "UIUserInterfaceLevelBase")]
    pub const Base: Self = Self(0);
    #[doc(alias = "UIUserInterfaceLevelElevated")]
    pub const Elevated: Self = Self(1);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uiuserinterfaceactiveappearance?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIUserInterfaceActiveAppearance(pub NSInteger);
impl UIUserInterfaceActiveAppearance {
    #[doc(alias = "UIUserInterfaceActiveAppearanceUnspecified")]
    pub const Unspecified: Self = Self(-1);
    #[doc(alias = "UIUserInterfaceActiveAppearanceInactive")]
    pub const Inactive: Self = Self(0);
    #[doc(alias = "UIUserInterfaceActiveAppearanceActive")]
    pub const Active: Self = Self(1);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uinstoolbaritempresentationsize?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UINSToolbarItemPresentationSize(pub NSInteger);
impl UINSToolbarItemPresentationSize {
    #[doc(alias = "UINSToolbarItemPresentationSizeUnspecified")]
    pub const Unspecified: Self = Self(-1);
    #[doc(alias = "UINSToolbarItemPresentationSizeRegular")]
    pub const Regular: Self = Self(0);
    #[doc(alias = "UINSToolbarItemPresentationSizeSmall")]
    pub const Small: Self = Self(1);
    #[doc(alias = "UINSToolbarItemPresentationSizeLarge")]
    pub const Large: Self = Self(3);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uiimagedynamicrange?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIImageDynamicRange(pub NSInteger);
impl UIImageDynamicRange {
    /// Do not specify a preferred dynamic range.
    #[doc(alias = "UIImageDynamicRangeUnspecified")]
    pub const Unspecified: Self = Self(-1);
    /// Restrict the image content dynamic range to the standard range.
    #[doc(alias = "UIImageDynamicRangeStandard")]
    pub const Standard: Self = Self(0);
    /// Allow image content to use some extended range. This is appropriate for mixing content with standard and high dynamic ranges.
    #[doc(alias = "UIImageDynamicRangeConstrainedHigh")]
    pub const ConstrainedHigh: Self = Self(1);
    /// Allow image content to use unrestricted extended range.
    #[doc(alias = "UIImageDynamicRangeHigh")]
    pub const High: Self = Self(2);
}

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

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

/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uihdrheadroomusagelimit?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIHDRHeadroomUsageLimit(pub NSInteger);
impl UIHDRHeadroomUsageLimit {
    /// Headroom usage limits are not defined
    #[doc(alias = "UIHDRHeadroomUsageLimitUnspecified")]
    pub const Unspecified: Self = Self(-1);
    /// Headroom usage limits are in effect, HDR headroom usage should be restricted
    #[doc(alias = "UIHDRHeadroomUsageLimitActive")]
    pub const Active: Self = Self(0);
    /// Headroom usage limits are disabled, HDR headroom usage is unrestricted.
    #[doc(alias = "UIHDRHeadroomUsageLimitInactive")]
    pub const Inactive: Self = Self(1);
}

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

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

/// UIColorSystemColors.
#[cfg(feature = "UIColor")]
impl UIColor {
    extern_methods!(
        #[unsafe(method(systemRedColor))]
        #[unsafe(method_family = none)]
        pub fn systemRedColor() -> Retained<UIColor>;

        #[unsafe(method(systemGreenColor))]
        #[unsafe(method_family = none)]
        pub fn systemGreenColor() -> Retained<UIColor>;

        #[unsafe(method(systemBlueColor))]
        #[unsafe(method_family = none)]
        pub fn systemBlueColor() -> Retained<UIColor>;

        #[unsafe(method(systemOrangeColor))]
        #[unsafe(method_family = none)]
        pub fn systemOrangeColor() -> Retained<UIColor>;

        #[unsafe(method(systemYellowColor))]
        #[unsafe(method_family = none)]
        pub fn systemYellowColor() -> Retained<UIColor>;

        #[unsafe(method(systemPinkColor))]
        #[unsafe(method_family = none)]
        pub fn systemPinkColor() -> Retained<UIColor>;

        #[unsafe(method(systemPurpleColor))]
        #[unsafe(method_family = none)]
        pub fn systemPurpleColor() -> Retained<UIColor>;

        #[unsafe(method(systemTealColor))]
        #[unsafe(method_family = none)]
        pub fn systemTealColor() -> Retained<UIColor>;

        #[unsafe(method(systemIndigoColor))]
        #[unsafe(method_family = none)]
        pub fn systemIndigoColor() -> Retained<UIColor>;

        #[unsafe(method(systemBrownColor))]
        #[unsafe(method_family = none)]
        pub fn systemBrownColor() -> Retained<UIColor>;

        #[unsafe(method(systemMintColor))]
        #[unsafe(method_family = none)]
        pub fn systemMintColor() -> Retained<UIColor>;

        #[unsafe(method(systemCyanColor))]
        #[unsafe(method_family = none)]
        pub fn systemCyanColor() -> Retained<UIColor>;

        #[unsafe(method(systemGrayColor))]
        #[unsafe(method_family = none)]
        pub fn systemGrayColor() -> Retained<UIColor>;

        #[unsafe(method(systemGray2Color))]
        #[unsafe(method_family = none)]
        pub fn systemGray2Color() -> Retained<UIColor>;

        #[unsafe(method(systemGray3Color))]
        #[unsafe(method_family = none)]
        pub fn systemGray3Color() -> Retained<UIColor>;

        #[unsafe(method(systemGray4Color))]
        #[unsafe(method_family = none)]
        pub fn systemGray4Color() -> Retained<UIColor>;

        #[unsafe(method(systemGray5Color))]
        #[unsafe(method_family = none)]
        pub fn systemGray5Color() -> Retained<UIColor>;

        #[unsafe(method(systemGray6Color))]
        #[unsafe(method_family = none)]
        pub fn systemGray6Color() -> Retained<UIColor>;

        #[unsafe(method(tintColor))]
        #[unsafe(method_family = none)]
        pub fn tintColor() -> Retained<UIColor>;

        #[unsafe(method(labelColor))]
        #[unsafe(method_family = none)]
        pub fn labelColor() -> Retained<UIColor>;

        #[unsafe(method(secondaryLabelColor))]
        #[unsafe(method_family = none)]
        pub fn secondaryLabelColor() -> Retained<UIColor>;

        #[unsafe(method(tertiaryLabelColor))]
        #[unsafe(method_family = none)]
        pub fn tertiaryLabelColor() -> Retained<UIColor>;

        #[unsafe(method(quaternaryLabelColor))]
        #[unsafe(method_family = none)]
        pub fn quaternaryLabelColor() -> Retained<UIColor>;

        #[unsafe(method(linkColor))]
        #[unsafe(method_family = none)]
        pub fn linkColor() -> Retained<UIColor>;

        #[unsafe(method(placeholderTextColor))]
        #[unsafe(method_family = none)]
        pub fn placeholderTextColor() -> Retained<UIColor>;

        #[unsafe(method(separatorColor))]
        #[unsafe(method_family = none)]
        pub fn separatorColor() -> Retained<UIColor>;

        #[unsafe(method(opaqueSeparatorColor))]
        #[unsafe(method_family = none)]
        pub fn opaqueSeparatorColor() -> Retained<UIColor>;

        #[unsafe(method(systemBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn systemBackgroundColor() -> Retained<UIColor>;

        #[unsafe(method(secondarySystemBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn secondarySystemBackgroundColor() -> Retained<UIColor>;

        #[unsafe(method(tertiarySystemBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn tertiarySystemBackgroundColor() -> Retained<UIColor>;

        #[unsafe(method(systemGroupedBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn systemGroupedBackgroundColor() -> Retained<UIColor>;

        #[unsafe(method(secondarySystemGroupedBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn secondarySystemGroupedBackgroundColor() -> Retained<UIColor>;

        #[unsafe(method(tertiarySystemGroupedBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn tertiarySystemGroupedBackgroundColor() -> Retained<UIColor>;

        #[unsafe(method(systemFillColor))]
        #[unsafe(method_family = none)]
        pub fn systemFillColor() -> Retained<UIColor>;

        #[unsafe(method(secondarySystemFillColor))]
        #[unsafe(method_family = none)]
        pub fn secondarySystemFillColor() -> Retained<UIColor>;

        #[unsafe(method(tertiarySystemFillColor))]
        #[unsafe(method_family = none)]
        pub fn tertiarySystemFillColor() -> Retained<UIColor>;

        #[unsafe(method(quaternarySystemFillColor))]
        #[unsafe(method_family = none)]
        pub fn quaternarySystemFillColor() -> Retained<UIColor>;

        #[unsafe(method(lightTextColor))]
        #[unsafe(method_family = none)]
        pub fn lightTextColor() -> Retained<UIColor>;

        #[unsafe(method(darkTextColor))]
        #[unsafe(method_family = none)]
        pub fn darkTextColor() -> Retained<UIColor>;

        #[deprecated]
        #[unsafe(method(groupTableViewBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn groupTableViewBackgroundColor() -> Retained<UIColor>;

        #[deprecated]
        #[unsafe(method(viewFlipsideBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn viewFlipsideBackgroundColor() -> Retained<UIColor>;

        #[deprecated]
        #[unsafe(method(scrollViewTexturedBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn scrollViewTexturedBackgroundColor() -> Retained<UIColor>;

        #[deprecated]
        #[unsafe(method(underPageBackgroundColor))]
        #[unsafe(method_family = none)]
        pub fn underPageBackgroundColor() -> Retained<UIColor>;
    );
}

/// UIFontSystemFonts.
#[cfg(feature = "UIFont")]
impl UIFont {
    extern_methods!(
        #[cfg(feature = "objc2-core-foundation")]
        #[unsafe(method(labelFontSize))]
        #[unsafe(method_family = none)]
        pub fn labelFontSize() -> CGFloat;

        #[cfg(feature = "objc2-core-foundation")]
        #[unsafe(method(buttonFontSize))]
        #[unsafe(method_family = none)]
        pub fn buttonFontSize() -> CGFloat;

        #[cfg(feature = "objc2-core-foundation")]
        #[unsafe(method(smallSystemFontSize))]
        #[unsafe(method_family = none)]
        pub fn smallSystemFontSize() -> CGFloat;

        #[cfg(feature = "objc2-core-foundation")]
        #[unsafe(method(systemFontSize))]
        #[unsafe(method_family = none)]
        pub fn systemFontSize() -> CGFloat;

        #[cfg(feature = "objc2-core-foundation")]
        #[unsafe(method(defaultFontSize))]
        #[unsafe(method_family = none)]
        pub fn defaultFontSize() -> CGFloat;

        #[cfg(feature = "objc2-core-foundation")]
        #[unsafe(method(systemMinimumFontSize))]
        #[unsafe(method_family = none)]
        pub fn systemMinimumFontSize() -> CGFloat;
    );
}