[AppKit/UIKit] Implement Xcode 16.0 beta 1-6 changes. (#21130)

This commit is contained in:
Rolf Bjarne Kvinge 2024-09-11 16:48:52 +02:00 коммит произвёл GitHub
Родитель 0f285bba1c
Коммит d99f6f8fa9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
33 изменённых файлов: 3302 добавлений и 2455 удалений

Просмотреть файл

@ -22,6 +22,7 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel;
using ObjCRuntime;
using Foundation;
@ -891,7 +892,10 @@ namespace AppKit {
[NoMacCatalyst]
[Native]
public enum NSWindowSharingType : ulong {
None, ReadOnly, ReadWrite
None,
ReadOnly,
[Deprecated (PlatformName.MacOSX, 15, 0, message: "Use 'ReadOnly' instead.")]
ReadWrite,
}
[NoMacCatalyst]
@ -1983,13 +1987,29 @@ namespace AppKit {
ApplicationOnlyMask = 1
}
#if XAMCORE_5_0
[NoMacCatalyst]
#else
[MacCatalyst (13, 1)]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "This enum doesn't exist on this platform.")]
#if __MACCATALYST__
[EditorBrowsable (EditorBrowsableState.Never)]
#endif
#endif
[Native]
public enum NSCollectionViewDropOperation : long {
On = 0, Before = 1
}
#if XAMCORE_5_0
[NoMacCatalyst]
#else
[MacCatalyst (13, 1)]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "This enum doesn't exist on this platform.")]
#if __MACCATALYST__
[EditorBrowsable (EditorBrowsableState.Never)]
#endif
#endif
[Native]
public enum NSCollectionViewItemHighlightState : long {
None = 0,
@ -1998,7 +2018,15 @@ namespace AppKit {
AsDropTarget = 3
}
#if XAMCORE_5_0
[NoMacCatalyst]
#else
[MacCatalyst (13, 1)]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "This enum doesn't exist on this platform.")]
#if __MACCATALYST__
[EditorBrowsable (EditorBrowsableState.Never)]
#endif
#endif
[Native]
[Flags]
public enum NSCollectionViewScrollPosition : ulong {

Просмотреть файл

@ -179,9 +179,21 @@ namespace AppKit {
NSFrameRectWithWidthUsingOperation (rect, frameWidth, (nuint) (ulong) operation);
}
#if NET
[SupportedOSPlatform ("macos")]
[ObsoletedOSPlatform ("macos14.0", "Use 'NSCursor.DisappearingItemCursor' instead." )]
#else
[Deprecated (PlatformName.MacOSX, 14, 0, message: "Use 'NSCursor.DisappearingItemCursor' instead.")]
#endif
[DllImport (Constants.AppKitLibrary, EntryPoint = "NSShowAnimationEffect")]
extern static void NSShowAnimationEffect (nuint animationEffect, CGPoint centerLocation, CGSize size, NativeHandle animationDelegate, NativeHandle didEndSelector, IntPtr contextInfo);
#if NET
[SupportedOSPlatform ("macos")]
[ObsoletedOSPlatform ("macos14.0", "Use 'NSCursor.DisappearingItemCursor' instead." )]
#else
[Deprecated (PlatformName.MacOSX, 14, 0, message: "Use 'NSCursor.DisappearingItemCursor' instead.")]
#endif
public static void ShowAnimationEffect (NSAnimationEffect animationEffect, CGPoint centerLocation, CGSize size, NSObject animationDelegate, Selector didEndSelector, IntPtr contextInfo)
{
NSShowAnimationEffect ((nuint) (ulong) animationEffect, centerLocation, size, animationDelegate.GetHandle (), didEndSelector.Handle, contextInfo);

Просмотреть файл

@ -3183,7 +3183,7 @@ namespace UIKit {
Secondary = 1L << 1,
}
[Flags, TV (13, 4), NoWatch, iOS (13, 4)]
[Flags, TV (13, 4), Watch (6, 2), iOS (13, 4)]
[MacCatalyst (13, 1)]
[Native]
public enum UIAxis : ulong {

Просмотреть файл

@ -65,6 +65,8 @@ using Color = UIKit.UIColor;
using NSColorList = Foundation.NSObject;
#else
using Color = AppKit.NSColor;
using IUIActivityItemsConfigurationReading = System.Object;
using UIBarButtonItem = Foundation.NSObject;
#endif
#if !NET
@ -81,6 +83,70 @@ namespace AppKit {
// void DrawAtPoint (CGPoint atPoint, CGRect fromRect, NSCompositingOperation operation, float fractionDelta);
//}
[Native]
[Mac (15, 0), MacCatalyst (18, 0)]
enum NSCursorFrameResizePosition : ulong {
Top = (1 << 0),
Left = (1 << 1),
Bottom = (1 << 2),
Right = (1 << 3),
TopLeft = (Top | Left),
TopRight = (Top | Right),
BottomLeft = (Bottom | Left),
BottomRight = (Bottom | Right),
}
[Native]
[Mac (15, 0), MacCatalyst (18, 0)]
enum NSCursorFrameResizeDirections : ulong {
Inward = (1 << 0),
Outward = (1 << 1),
All = (Inward | Outward),
}
[Native]
[Mac (15, 0), MacCatalyst (18, 0)]
enum NSHorizontalDirections : ulong {
Left = (1 << 0),
Right = (1 << 1),
All = (Left | Right),
}
[Native]
[Mac (15, 0), MacCatalyst (18, 0)]
enum NSVerticalDirections : ulong {
Up = (1 << 0),
Down = (1 << 1),
All = (Up | Down),
}
[Native]
[Mac (15, 0), NoMacCatalyst]
enum NSSharingCollaborationMode : long {
SendCopy,
Collaborate,
}
[Native]
[Mac (15, 0), NoMacCatalyst]
enum NSWritingToolsBehavior : long {
None = -1,
Default = 0,
Complete,
Limited,
}
[Flags]
[Native]
[Mac (15, 0), NoMacCatalyst]
enum NSWritingToolsResultOptions : ulong {
Default = 0,
PlainText = 1 << 0,
RichText = 1 << 1,
List = 1 << 2,
Table = 1 << 3,
}
[NoMacCatalyst]
[BaseType (typeof (NSCell))]
interface NSActionCell {
@ -5257,6 +5323,8 @@ namespace AppKit {
[Export ("currentCursor")]
NSCursor CurrentCursor { get; }
[Deprecated (PlatformName.MacOSX, 15, 0, message: "If using ScreenCaptureKit to capture the screen, use the 'SCStreamConfiguration.ShowsCursor' to control whether or not to include the cursor in the capture. Use 'NSCursor.CurrentCursor' to get the current cursor for this application.")]
[Deprecated (PlatformName.MacCatalyst, 18, 0, message: "If using ScreenCaptureKit to capture the screen, use the 'SCStreamConfiguration.ShowsCursor' to control whether or not to include the cursor in the capture. Use 'NSCursor.CurrentCursor' to get the current cursor for this application.")]
[Static]
[Export ("currentSystemCursor")]
[NullAllowed]
@ -5334,6 +5402,41 @@ namespace AppKit {
[Export ("IBeamCursorForVerticalLayout")]
NSCursor IBeamCursorForVerticalLayout { get; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Static]
[Export ("zoomInCursor", ArgumentSemantic.Strong)]
NSCursor ZoomInCursor { get; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Static]
[Export ("zoomOutCursor", ArgumentSemantic.Strong)]
NSCursor ZoomOutCursor { get; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Static]
[Export ("columnResizeCursor", ArgumentSemantic.Strong)]
NSCursor ColumnResizeCursor { get; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Static]
[Export ("columnResizeCursorInDirections:")]
NSCursor GetColumnResizeCursor (NSHorizontalDirections directions);
[Mac (15, 0), MacCatalyst (18, 0)]
[Static]
[Export ("rowResizeCursor", ArgumentSemantic.Strong)]
NSCursor RowResizeCursor { get; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Static]
[Export ("rowResizeCursorInDirections:")]
NSCursor GetRowResizeCursor (NSVerticalDirections directions);
[Mac (15, 0), MacCatalyst (18, 0)]
[Static]
[Export ("frameResizeCursorFromPosition:inDirections:")]
NSCursor GetFrameResizeCursor (NSCursorFrameResizePosition position, NSCursorFrameResizeDirections directions);
[DesignatedInitializer]
[Export ("initWithImage:hotSpot:")]
NativeHandle Constructor (NSImage newImage, CGPoint aPoint);
@ -5741,9 +5844,14 @@ namespace AppKit {
[Export ("runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:")]
void RunModalSavePanelForSaveOperation (NSSaveOperationType saveOperation, [NullAllowed] NSObject delegateObject, [NullAllowed] Selector didSaveSelector, [NullAllowed] IntPtr contextInfo);
[Deprecated (PlatformName.MacOSX, 15, 0, message: "Use 'SavePanelShowsFileFormatsControl' instead.")]
[Export ("shouldRunSavePanelWithAccessoryView")]
bool ShouldRunSavePanelWithAccessoryView { get; }
[Mac (15, 0)]
[Export ("savePanelShowsFileFormatsControl")]
bool SavePanelShowsFileFormatsControl { get; }
[Export ("prepareSavePanel:")]
bool PrepareSavePanel (NSSavePanel savePanel);
@ -7544,6 +7652,7 @@ namespace AppKit {
[Static, Export ("graphicsContextWithAttributes:")]
NSGraphicsContext FromAttributes (NSDictionary attributes);
[Deprecated (PlatformName.MacOSX, 15, 0, message: "Add NSView instances to display content in a window.")]
[Static, Export ("graphicsContextWithWindow:")]
NSGraphicsContext FromWindow (NSWindow window);
@ -7823,6 +7932,7 @@ namespace AppKit {
[NoMacCatalyst]
[BaseType (typeof (NSImageRep))]
[DisableDefaultCtor] // An uncaught exception was raised: -[NSEPSImageRep init]: unrecognized selector sent to instance 0x1db2d90
[Deprecated (PlatformName.MacOSX, 14, 0)]
interface NSEPSImageRep {
[Static]
[Export ("imageRepWithData:")]
@ -8710,6 +8820,10 @@ namespace AppKit {
[Static]
[Export ("sectionHeaderWithTitle:")]
NSMenuItem CreateSectionHeader (string title);
[Mac (14, 4)]
[Export ("subtitle", ArgumentSemantic.Copy), NullAllowed]
string Subtitle { get; set; }
}
[NoMacCatalyst]
@ -9284,6 +9398,15 @@ namespace AppKit {
[Deprecated (PlatformName.MacOSX, 10, 6, message: "Use ShouldEnableUrl instead.")]
[Export ("panel:shouldShowFilename:"), DelegateName ("NSOpenSaveFilename"), DefaultValue (true)]
bool ShouldShowFilename (NSSavePanel panel, string filename);
[Mac (15, 0)]
[Export ("panel:displayNameForType:"), DelegateName ("NSopenSavePanelDisplayName"), DefaultValue (null)]
[return: NullAllowed]
string GetDisplayName (NSSavePanel panel, UTType type);
[Mac (15, 0)]
[Export ("panel:didSelectType:"), EventArgs ("NSopenSavePanelUTType")]
void DidSelectType (NSSavePanel panel, [NullAllowed] UTType type);
}
[NoMacCatalyst]
@ -12299,6 +12422,34 @@ namespace AppKit {
[Export ("selectedTag")]
nint SelectedTag { get; }
[Mac (15, 0)]
[Static]
[Export ("popUpButtonWithMenu:target:action:")]
NSPopUpButton CreatePopUpButton (NSMenu menu, [NullAllowed] NSObject target, [NullAllowed] Selector selector);
[Mac (15, 0)]
[Static]
[Export ("pullDownButtonWithTitle:menu:")]
NSPopUpButton CreatePullDownButton (string title, NSMenu menu);
[Mac (15, 0)]
[Static]
[Export ("pullDownButtonWithImage:menu:")]
NSPopUpButton CreatePullDownButton (NSImage image, NSMenu menu);
[Mac (15, 0)]
[Static]
[Export ("pullDownButtonWithTitle:image:menu:")]
NSPopUpButton CreatePullDownButton (string title, NSImage image, NSMenu menu);
[Mac (15, 0)]
[Export ("usesItemFromMenu")]
bool UsesItemFromMenu { get; set; }
[Mac (15, 0)]
[Export ("altersStateOfSelectedItem")]
bool AltersStateOfSelectedItem { get; set; }
}
[NoMacCatalyst]
@ -12791,9 +12942,11 @@ namespace AppKit {
[Export ("indeterminate")]
bool Indeterminate { [Bind ("isIndeterminate")] get; set; }
[Deprecated (PlatformName.MacOSX, 14, 0, message: "This property is not respected anymore.")]
[Export ("bezeled")]
bool Bezeled { [Bind ("isBezeled")] get; set; }
[Deprecated (PlatformName.MacOSX, 14, 0, message: "This property is not respected anymore.")]
[Export ("controlTint")]
NSControlTint ControlTint { get; set; }
@ -13107,6 +13260,10 @@ namespace AppKit {
[Export ("quickLookPreviewItems:")]
void QuickLookPreviewItems ([NullAllowed] NSObject sender);
[Mac (15, 0)]
[Export ("showContextMenuForSelection:")]
void ShowContextMenuForSelection ([NullAllowed] NSObject sender);
}
[NoMacCatalyst]
@ -13295,6 +13452,10 @@ namespace AppKit {
[Export ("encodeRestorableStateWithCoder:backgroundQueue:")]
void EncodeRestorableState (NSCoder coder, NSOperationQueue queue);
[Mac (15, 0)]
[Export ("contextMenuKeyDown:")]
void ContextMenuKeyDown (NSEvent @event);
}
[NoMacCatalyst]
@ -13604,6 +13765,14 @@ namespace AppKit {
[Mac (14, 0)]
[NullAllowed, Export ("identifier")]
string Identifier { get; set; }
[Mac (15, 0)]
[NullAllowed, Export ("currentContentType", ArgumentSemantic.Copy)]
UTType CurrentContentType { get; set; }
[Mac (15, 0)]
[Export ("showsContentTypes")]
bool ShowsContentTypes { get; set; }
}
#if !NET && !__MACCATALYST__
@ -14619,6 +14788,7 @@ namespace AppKit {
[NoMacCatalyst]
[BaseType (typeof (NSObject))]
[Deprecated (PlatformName.MacOSX, 14, 0, message: "Use 'AVSpeechSynthesizer' in AVFoundation instead.")]
interface NSSpeechSynthesizer {
[Export ("initWithVoice:")]
NativeHandle Constructor (string voice);
@ -14701,6 +14871,7 @@ namespace AppKit {
[BaseType (typeof (NSObject))]
[Model]
[Protocol]
[Deprecated (PlatformName.MacOSX, 14, 0, message: "Use 'AVSpeechSynthesizer' in AVFoundation instead.")]
interface NSSpeechSynthesizerDelegate {
[Export ("speechSynthesizer:didFinishSpeaking:")]
void DidFinishSpeaking (NSSpeechSynthesizer sender, bool finishedSpeaking);
@ -15631,6 +15802,18 @@ namespace AppKit {
[Internal, Field ("NSSourceTextScalingDocumentOption")]
NSString SourceTextScalingDocumentOption { get; }
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("NSTextHighlightStyleAttributeName")]
NSString TextHighlightStyle { get; }
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("NSTextHighlightColorSchemeAttributeName")]
NSString TextHighlightColorScheme { get; }
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("NSAdaptiveImageGlyphAttributeName")]
NSString AdaptiveImageGlyph { get; }
}
delegate NSObject NSStoryboardControllerCreator (NSCoder coder);
@ -17007,6 +17190,7 @@ namespace AppKit {
[Export ("storyboard", ArgumentSemantic.Strong)]
NSStoryboard Storyboard { get; }
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use WidgetKit instead.")]
[Export ("presentViewControllerInWidget:")]
void PresentViewControllerInWidget (NSViewController viewController);
@ -19685,6 +19869,39 @@ namespace AppKit {
[Mac (14, 0)]
[Export ("inlinePredictionType", ArgumentSemantic.Assign)]
NSTextInputTraitType InlinePredictionType { get; set; }
// Inlined from the NSTextView (NSSharing) category
[Mac (15, 0)]
[Export ("writingToolsActive")]
bool WritingToolsActive { [Bind ("isWritingToolsActive")] get; }
// Inlined from the NSTextView (NSSharing) category
[Mac (15, 0)]
[Export ("writingToolsBehavior")]
NSWritingToolsBehavior WritingToolsBehavior { get; set; }
// Inlined from the NSTextView (NSSharing) category
[Mac (15, 0)]
[Export ("allowedWritingToolsResultOptions")]
NSWritingToolsResultOptions AllowedWritingToolsResultOptions { get; set; }
// Inlined from the NSTextView (NSTextChecking) category
[Mac (15, 0)]
[Export ("mathExpressionCompletionType")]
NSTextInputTraitType MathExpressionCompletionType { get; set; }
// Inlined from the NSTextView (NSTextView_TextHighlight) category
[Mac (15, 0)]
[Export ("textHighlightAttributes", ArgumentSemantic.Copy)]
NSDictionary<NSString, NSObject> TextHighlightAttributes { get; set; }
[Mac (15, 0)]
[Export ("drawTextHighlightBackgroundForTextRange:origin:")]
void DrawTextHighlightBackground (NSTextRange textRange, CGPoint origin);
[Mac (15, 0)]
[Export ("highlight:")]
void Highlight ([NullAllowed] NSObject sender);
}
[NoMacCatalyst]
@ -19778,6 +19995,14 @@ namespace AppKit {
[Mac (14, 0)]
[Export ("preferredTextAccessoryPlacement")]
NSTextCursorAccessoryPlacement PreferredTextAccessoryPlacement { get; }
[Mac (15, 0)]
[Export ("supportsAdaptiveImageGlyph")]
bool SupportsAdaptiveImageGlyph { get; }
[Mac (15, 0)]
[Export ("insertAdaptiveImageGlyph:replacementRange:")]
void InsertAdaptiveImageGlyph (NSAdaptiveImageGlyph adaptiveImageGlyph, NSRange replacementRange);
}
interface INSTextViewDelegate { }
@ -19871,6 +20096,20 @@ namespace AppKit {
[Export ("textView:shouldSelectCandidateAtIndex:"), DelegateName ("NSTextViewSelectCandidate"), NoDefaultValue]
bool ShouldSelectCandidates (NSTextView textView, nuint index);
#if NET
[Mac (15, 0)]
[Export ("textViewWritingToolsWillBegin:"), EventArgs ("NSTextView")]
void WritingToolsWillBegin (NSTextView textView);
[Mac (15, 0)]
[Export ("textViewWritingToolsDidEnd:"), EventArgs ("NSTextView")]
void WritingToolsDidEnd (NSTextView textView);
[Mac (15, 0)]
[Export ("textView:writingToolsIgnoredRangesInEnclosingRange:"), DelegateName ("NSTextViewRange"), NoDefaultValue]
// Can't use BindAs in a protocol [return: BindAs (typeof (NSRange[]))]
NSValue [] GetWritingToolsIgnoredRangesInEnclosingRange (NSTextView textView, NSRange enclosingRange);
#endif
}
[NoMacCatalyst]
@ -19978,9 +20217,13 @@ namespace AppKit {
[Export ("visibleItems")]
NSToolbarItem [] VisibleItems { get; }
[Deprecated (PlatformName.MacOSX, 15, 0, message: "Use the 'ItemIdentifiers' and 'DisplayMode' properties instead.")]
[Deprecated (PlatformName.MacCatalyst, 18, 0, message: "Use the 'ItemIdentifiers' and 'DisplayMode' properties instead.")]
[Export ("setConfigurationFromDictionary:")]
void SetConfigurationFromDictionary (NSDictionary configDict);
[Deprecated (PlatformName.MacOSX, 15, 0, message: "Use the 'ItemIdentifiers' and 'DisplayMode' properties instead.")]
[Deprecated (PlatformName.MacCatalyst, 18, 0, message: "Use the 'ItemIdentifiers' and 'DisplayMode' properties instead.")]
[Export ("configurationDictionary")]
NSDictionary ConfigurationDictionary { get; }
@ -20008,6 +20251,8 @@ namespace AppKit {
[Export ("sizeMode")]
NSToolbarSizeMode SizeMode { get; set; }
[Deprecated (PlatformName.MacOSX, 15, 0, message: "No longer supported.")]
[Deprecated (PlatformName.MacCatalyst, 18, 0, message: "No longer supported.")]
[Export ("showsBaselineSeparator")]
bool ShowsBaselineSeparator { get; set; }
@ -20079,7 +20324,7 @@ namespace AppKit {
[Export ("centeredItemIdentifiers", ArgumentSemantic.Copy)]
NSSet<NSString> CenteredItemIdentifiers { get; set; }
[NoMacCatalyst]
[MacCatalyst (16, 0)]
[Mac (13, 0)]
[Field ("NSToolbarItemKey")]
NSString NSToolbarItemKey { get; }
@ -20091,6 +20336,22 @@ namespace AppKit {
[NoMacCatalyst, Mac (14, 0)]
[Field ("NSToolbarInspectorTrackingSeparatorItemIdentifier")]
NSString NSToolbarInspectorTrackingSeparatorItemIdentifier { get; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Field ("NSToolbarNewIndexKey")]
NSString NSToolbarNewIndexKey { get; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Export ("allowsDisplayModeCustomization")]
bool AllowsDisplayModeCustomization { get; set; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Export ("itemIdentifiers", ArgumentSemantic.Copy)]
string [] ItemIdentifiers { get; set; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Export ("removeItemWithItemIdentifier:")]
void RemoveItem (string itemIdentifier);
}
interface INSToolbarDelegate { }
@ -20125,7 +20386,6 @@ namespace AppKit {
[Mac (13, 0), MacCatalyst (16, 0)]
[Export ("toolbar:itemIdentifier:canBeInsertedAtIndex:"), DelegateName ("NSToolbarCanInsert"), DefaultValue (true)]
bool GetItemCanBeInsertedAt (NSToolbar toolbar, string itemIdentifier, nint index);
}
[NoMacCatalyst]
@ -20144,9 +20404,14 @@ namespace AppKit {
bool ValidateToolbarItem (NSToolbarItem item);
}
[NoWatch, NoTV, NoiOS]
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
interface NSToolbarItem : NSCopying, NSMenuItemValidation, NSValidatedUserInterfaceItem {
interface NSToolbarItem : NSCopying, NSMenuItemValidation, NSValidatedUserInterfaceItem
#if __MACCATALYST__
, UIPopoverPresentationControllerSourceItem
#endif
{
[DesignatedInitializer]
[Export ("initWithItemIdentifier:")]
NativeHandle Constructor (string itemIdentifier);
@ -20161,6 +20426,8 @@ namespace AppKit {
[Export ("validate")]
void Validate ();
[Deprecated (PlatformName.MacOSX, 15, 0, message: "Duplicates are no longer supported.")]
[Deprecated (PlatformName.MacCatalyst, 18, 0, message: "Duplicates are no longer supported.")]
[Export ("allowsDuplicatesInToolbar")]
bool AllowsDuplicatesInToolbar { get; }
@ -20262,13 +20529,23 @@ namespace AppKit {
UIMenuElement ItemMenuFormRepresentation { get; set; }
[Mac (13, 0)]
[NoMacCatalyst]
[MacCatalyst (16, 0)]
[Export ("possibleLabels", ArgumentSemantic.Copy)]
NSSet<NSString> PossibleLabels { get; set; }
[Mac (14, 0), MacCatalyst (17, 0)]
[Export ("visible")]
bool Visible { [Bind ("isVisible")] get; }
[Mac (15, 0), MacCatalyst (18, 0)]
[Export ("hidden")]
bool Hidden { [Bind ("isHidden")] get; set; }
[Static]
[NoMac]
[MacCatalyst (13, 1)]
[Export ("itemWithItemIdentifier:barButtonItem:")]
NSToolbarItem Create (string itemIdentifier, UIBarButtonItem barButtonItem);
}
[MacCatalyst (13, 1)]
@ -20707,6 +20984,8 @@ namespace AppKit {
NativeHandle Constructor (CGRect contentRect, NSWindowStyle aStyle, NSBackingStore bufferingType, bool deferCreation, NSScreen screen);
#if NET
[return: NullAllowed]
[Deprecated (PlatformName.MacOSX, 15, 0, message: "Do not use this method.")]
[Export ("initWithWindowRef:")]
[PostSnippet ("InitializeReleasedWhenClosed ();", Optimizable = true)]
NativeHandle Constructor (IntPtr windowRef);
@ -20785,6 +21064,7 @@ namespace AppKit {
[Export ("inLiveResize")]
bool InLiveResize { get; }
[Deprecated (PlatformName.MacOSX, 15, 0, message: "This property doesn't do anything.")]
[Export ("showsResizeIndicator")]
bool ShowsResizeIndicator { get; set; }
@ -21161,6 +21441,7 @@ namespace AppKit {
[Export ("displaysWhenScreenProfileChanges")]
bool DisplaysWhenScreenProfileChanges { get; set; }
[Deprecated (PlatformName.MacOSX, 15, 0, message: "This method doesn't do anything.")]
[Export ("disableScreenUpdatesUntilFlush")]
void DisableScreenUpdatesUntilFlush ();
@ -21363,6 +21644,7 @@ namespace AppKit {
[Export ("unregisterDraggedTypes")]
void UnregisterDraggedTypes ();
[Deprecated (PlatformName.MacOSX, 15, 0, message: "This property should not be used.")]
[Export ("windowRef")]
IntPtr WindowRef { get; }
@ -21641,6 +21923,18 @@ namespace AppKit {
[Mac (14, 0)]
[Export ("displayLinkWithTarget:selector:")]
CADisplayLink GetDisplayLink (NSObject target, Selector selector);
[Deprecated (PlatformName.MacOSX, 15, 0, message: "Use BeginDraggingSession instead.")]
[Export ("dragImage:at:offset:event:pasteboard:source:slideBack:")]
void DragImage (NSImage anImage, CGPoint baseLocation, CGSize initialOffset, NSEvent theEvent, NSPasteboard pasteboard, NSObject sourceObject, bool slideFlag);
[Mac (15, 0)]
[Export ("beginDraggingSessionWithItems:event:source:")]
NSDraggingSession BeginDraggingSession (NSDraggingItem [] items, NSEvent evnt, INSDraggingSource source);
[Mac (15, 0)]
[Export ("cascadingReferenceFrame")]
CGRect CascadingReferenceFrame { get; }
}
[NoMacCatalyst]
@ -21959,6 +22253,11 @@ namespace AppKit {
[Export ("windowDidChangeBackingProperties:"), EventArgs ("NSNotification")]
void DidChangeBackingProperties (NSNotification notification);
[Mac (15, 0)]
[Export ("windowForSharingRequestFromWindow:"), DelegateName ("NSWindowNSWindow"), DefaultValue (null)]
[return: NullAllowed]
NSWindow GetWindowForSharingRequest (NSWindow fromWindow);
}
[NoMacCatalyst]
@ -22973,6 +23272,11 @@ namespace AppKit {
[Export ("sharingServicePicker:didChooseSharingService:"), EventArgs ("NSSharingServicePickerDidChooseSharingService")]
void DidChooseSharingService (NSSharingServicePicker sharingServicePicker, NSSharingService service);
[Mac (15, 0)]
[Export ("sharingServicePickerCollaborationModeRestrictions:"), DelegateName ("NSSharingServicePickerDelegateCollaborationModeRestrictions"), DefaultValue (null)]
[return: NullAllowed]
NSSharingCollaborationModeRestriction [] GetCollaborationModeRestrictions (NSSharingServicePicker sharingServicePicker);
}
[NoMacCatalyst]
@ -23393,6 +23697,16 @@ namespace AppKit {
[Mac (13, 3), MacCatalyst (16, 4)]
[Export ("hasActiveWindowSharingSession")]
bool HasActiveWindowSharingSession { get; }
[Async]
[Mac (15, 0), NoMacCatalyst]
[Export ("requestSharingOfWindow:completionHandler:")]
void RequestSharingOfWindow (NSWindow window, Action<NSError> completionHandler);
[Async]
[Mac (15, 0), NoMacCatalyst]
[Export ("requestSharingOfWindowUsingPreview:title:completionHandler:")]
void RequestSharingOfWindow (NSImage previewImage, string title, Action<NSError> completionHandler);
}
partial interface NSPrintOperation {
@ -26987,6 +27301,11 @@ namespace AppKit {
[NullAllowed, Export ("buttonImage", ArgumentSemantic.Retain)]
NSImage ButtonImage { get; set; }
// defined in the NSSharingServicePickerTouchBarItem (UIActivityItemsConfiguration) category in UIKit
[NoMac]
[Export ("activityItemsConfiguration", ArgumentSemantic.Strong), NullAllowed]
IUIActivityItemsConfigurationReading ActivityItemsConfiguration { get; set; }
}
[MacCatalyst (13, 1)]
@ -27614,6 +27933,18 @@ namespace AppKit {
[Export ("inlinePredictionType", ArgumentSemantic.Assign)]
NSTextInputTraitType InlinePredictionType { get; set; }
[Mac (15, 0)]
[Export ("mathExpressionCompletionType", ArgumentSemantic.Assign)]
NSTextInputTraitType MathExpressionCompletionType { get; set; }
[Mac (15, 0)]
[Export ("writingToolsBehavior", ArgumentSemantic.Assign)]
NSWritingToolsBehavior WritingToolsBehavior { get; set; }
[Mac (15, 0)]
[Export ("allowedWritingToolsResultOptions")]
NSWritingToolsResultOptions AllowedWritingToolsResultOptions { get; set; }
}
interface INSTextCheckingClient { }
@ -27884,6 +28215,11 @@ namespace AppKit {
[NoMacCatalyst]
[NullAllowed, Export ("delegate", ArgumentSemantic.Weak)]
NSObject WeakDelegate { get; set; }
// Defined in the NSSharingServicePickerToolbarItem (UIActivityItemsConfiguration) category in UIKIt
[NoMac]
[Export ("activityItemsConfiguration", ArgumentSemantic.Strong), NullAllowed]
IUIActivityItemsConfigurationReading ActivityItemsConfiguration { get; set; }
}
public interface INSSharingServicePickerToolbarItemDelegate { }
@ -28459,4 +28795,47 @@ namespace AppKit {
}
interface INSUserInterfaceItemSearching { }
[Mac (15, 0)]
[NoMacCatalyst]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface NSSharingCollaborationModeRestriction : NSSecureCoding, NSCopying {
[Export ("disabledMode")]
NSSharingCollaborationMode DisabledMode { get; }
[Export ("alertTitle", ArgumentSemantic.Copy), NullAllowed]
string AlertTitle { get; }
[Export ("alertMessage", ArgumentSemantic.Copy), NullAllowed]
string AlertMessage { get; }
[Export ("alertDismissButtonTitle", ArgumentSemantic.Copy), NullAllowed]
string AlertDismissButtonTitle { get; }
[Export ("alertRecoverySuggestionButtonTitle", ArgumentSemantic.Copy), NullAllowed]
string AlertRecoverySuggestionButtonTitle { get; }
[Export ("alertRecoverySuggestionButtonLaunchURL", ArgumentSemantic.Copy), NullAllowed]
NSUrl AlertRecoverySuggestionButtonLaunchUrl { get; set; }
[Export ("initWithDisabledMode:")]
NativeHandle Constructor (NSSharingCollaborationMode disabledMode);
[Export ("initWithDisabledMode:alertTitle:alertMessage:")]
NativeHandle Constructor (NSSharingCollaborationMode disabledMode, string alertTitle, string alertMessage);
[Export ("initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle:")]
NativeHandle Constructor (NSSharingCollaborationMode disabledMode, string alertTitle, string alertMessage, string alertDismissButtonTitle);
[Export ("initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle:alertRecoverySuggestionButtonTitle:alertRecoverySuggestionButtonLaunchURL:")]
NativeHandle Constructor (NSSharingCollaborationMode disabledMode, string alertTitle, string alertMessage, string alertDismissButtonTitle, string alertRecoverySuggestionButtonTitle, NSUrl alertRecoverySuggestionButtonLaunchUrl);
}
[Mac (15, 0), NoMacCatalyst]
[Protocol (BackwardsCompatibleCodeGeneration = false)]
interface NSViewContentSelectionInfo {
[Export ("selectionAnchorRect")]
CGRect /* NSRect */ SelectionAnchorRect { get; }
}
}

Просмотреть файл

@ -299,10 +299,16 @@ namespace Foundation {
#endif
{
#if !WATCH
// Inlined from the NSAttributedStringAttachmentConveniences category
[Static, Export ("attributedStringWithAttachment:")]
NSAttributedString FromAttachment (NSTextAttachment attachment);
#endif
// Inlined from the NSAttributedStringAttachmentConveniences category
[NoWatch, TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Static, Export ("attributedStringWithAttachment:attributes:")]
NSAttributedString FromAttachment (NSTextAttachment attachment, NSDictionary<NSString, NSObject> attributes);
[Export ("string")]
IntPtr LowLevelValue { get; }
@ -670,11 +676,16 @@ namespace Foundation {
[Export ("drawInRect:")]
void DrawString (CGRect rect);
// -(BOOL)containsAttachmentsInRange:(NSRange)range __attribute__((availability(macosx, introduced=10.11)));
// Inlined from the NSAttributedStringKitAdditions category
[MacCatalyst (13, 1)]
[Export ("containsAttachmentsInRange:")]
bool ContainsAttachmentsInRange (NSRange range);
// Inlined from the NSAttributedStringKitAdditions category
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Export ("prefersRTFDInRange:")]
bool PrefersRtfdInRange (NSRange range);
// inlined from NSAttributedStringWebKitAdditions category (since they are all static members)
[NoWatch]
@ -841,6 +852,12 @@ namespace Foundation {
[MacCatalyst (13, 1)]
NSString CocoaVersionDocumentAttribute { get; }
#endif // !XAMCORE_5_0
// Inlined from the NSAttributedStringAdaptiveImageGlyphConveniences category
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Static]
[Export ("attributedStringWithAdaptiveImageGlyph:attributes:")]
NSAttributedString Create (NSAdaptiveImageGlyph adaptiveImageGlyph, NSDictionary<NSString, NSObject> attributes);
}
// we follow the API found in swift

Просмотреть файл

@ -228,6 +228,26 @@ namespace Social {
[NullAllowed] // by default this property is null
[Export ("autoCompletionViewController", ArgumentSemantic.Strong)]
SocialViewController AutoCompletionViewController { get; set; }
#if NET
// Inlined manually from UITextViewDelegate/NSTextViewDelegate, because the one from the *Delegate type
// has different availability attributes depending on the platform.
[iOS (18, 0), MacCatalyst (18, 0), Mac (15, 0), MacCatalyst (18, 0), NoTV]
[Export ("textViewWritingToolsWillBegin:")]
new void WritingToolsWillBegin (SocialTextView textView);
// Inlined manually from UITextViewDelegate/NSTextViewDelegate, because the one from the *Delegate type
// has different availability attributes depending on the platform.
[iOS (18, 0), MacCatalyst (18, 0), Mac (15, 0), MacCatalyst (18, 0), NoTV]
[Export ("textViewWritingToolsDidEnd:")]
new void WritingToolsDidEnd (SocialTextView textView);
// Inlined manually from UITextViewDelegate/NSTextViewDelegate, because the one from the *Delegate type
// has different availability attributes depending on the platform.
[iOS (18, 0), MacCatalyst (18, 0), Mac (15, 0), MacCatalyst (18, 0), NoTV]
[Export ("textView:writingToolsIgnoredRangesInEnclosingRange:")]
new NSValue [] GetWritingToolsIgnoredRangesInEnclosingRange (SocialTextView textView, NSRange enclosingRange);
#endif
}

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -9,6 +9,8 @@ using ObjCRuntime;
using CoreAnimation;
#endif
using CoreGraphics;
using CoreText;
using UniformTypeIdentifiers;
using CGGlyph = System.UInt16;
using NSGlyph = System.UInt32;
@ -4524,6 +4526,9 @@ namespace UIKit {
[TV (13, 0)]
[Watch (6, 0)]
NSTextScalingType SourceTextScaling { get; set; }
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
bool TextKit1ListMarkerFormat { get; set; }
}
[Static]
@ -4580,5 +4585,55 @@ namespace UIKit {
[Field ("NSReadAccessURLDocumentOption", "WebKit")]
NSString ReadAccessUrlDocumentOption { get; }
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("NSTextKit1ListMarkerFormatDocumentOption")]
NSString TextKit1ListMarkerFormatDocumentOption { get; }
}
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface NSAdaptiveImageGlyph : NSCopying, NSSecureCoding, CTAdaptiveImageProviding {
[DesignatedInitializer]
[Export ("initWithImageContent:")]
NativeHandle Constructor (NSData imageContent);
[Export ("imageContent")]
NSData ImageContent { get; }
[Export ("contentIdentifier")]
string ContentIdentifier { get; }
[Export ("contentDescription", ArgumentSemantic.Copy)]
string ContentDescription { get; }
[Static]
[Export ("contentType")]
UTType ContentType { get; }
}
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
enum NSTextHighlightStyle {
[DefaultEnumValue]
[Field ("NSTextHighlightStyleDefault")]
Default,
}
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
enum NSTextHighlightColorScheme {
[DefaultEnumValue]
[Field ("NSTextHighlightColorSchemeDefault")]
Default,
[Field ("NSTextHighlightColorSchemePurple")]
Purple,
[Field ("NSTextHighlightColorSchemePink")]
Pink,
[Field ("NSTextHighlightColorSchemeOrange")]
Orange,
[Field ("NSTextHighlightColorSchemeMint")]
Mint,
[Field ("NSTextHighlightColorSchemeBlue")]
Blue,
}
}

Просмотреть файл

@ -54,7 +54,8 @@ namespace Cecil.Tests {
var failures = new Dictionary<string, ObsoletedFailure> ();
var mismatchedObsoleteMessages = new List<string> ();
foreach (var kvp in harvestedInfo) {
var attributes = kvp.Value.Select (v => v.Api.GetAvailabilityAttributes (v.Platform) ?? new OSPlatformAttributes (v.Api, v.Platform) ?? new OSPlatformAttributes (v.Api, v.Platform)).ToArray ();
var values = kvp.Value.Where (v => !v.Api.HasEditorBrowseableNeverAttribute ());
var attributes = values.Select (v => v.Api.GetAvailabilityAttributes (v.Platform) ?? new OSPlatformAttributes (v.Api, v.Platform) ?? new OSPlatformAttributes (v.Api, v.Platform)).ToArray ();
var obsoleted = attributes.Where (v => v?.Obsoleted is not null).ToArray ();
// No obsoleted, nothing to check
@ -70,7 +71,7 @@ namespace Cecil.Tests {
if (!notObsoletedNorUnsupported.Any ())
continue;
var failure = new ObsoletedFailure (kvp.Key, kvp.Value.First ().Api, obsoleted, notObsoletedNorUnsupported);
var failure = new ObsoletedFailure (kvp.Key, values.First ().Api, obsoleted, notObsoletedNorUnsupported);
failures [failure.Key] = failure;
var obsoleteMessages = obsoleted.Select (v => v.Obsoleted?.Message).Distinct ().ToArray ();
@ -171,7 +172,6 @@ namespace Cecil.Tests {
"HealthKit.HKUnit HealthKit.HKUnit::Calorie()",
"HealthKit.HKWorkoutActivityType HealthKit.HKWorkoutActivityType::DanceInspiredTraining",
"HealthKit.HKWorkoutActivityType HealthKit.HKWorkoutActivityType::MixedMetabolicCardioTraining",
"HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType, Foundation.NSDate, Foundation.NSDictionary)",
"HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType, Foundation.NSDate, HealthKit.HKMetadata)",
"HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType, Foundation.NSDate)",
"HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringAfterSignificantEvent(HomeKit.HMSignificantEvent, Foundation.NSDateComponents)",

Просмотреть файл

@ -367,6 +367,7 @@ namespace Cecil.Tests {
// https://github.com/xamarin/xamarin-macios/issues/17292
key = key
.Replace ("AppKit.NS", "XKit.X")
.Replace ("UIKit.NS", "XKit.X")
.Replace ("UIKit.UI", "XKit.X")
.Replace ("AppKit.INS", "XKit.IX")
.Replace ("UIKit.IUI", "XKit.IX")

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -727,6 +727,15 @@ namespace Introspection {
if (type.Name == "SKVideoNode" && !TestRuntime.CheckXcodeVersion (16, 0))
return true;
break;
case "UISpringLoadedInteractionSupporting":
switch (type.Name) {
case "UISearchTab":
case "UITab":
case "UITabGroup":
// These types implement UISpringLoadedInteractionSupporting using category, which we can't detect at runtime.
return true;
}
break;
}
return false;
}

Просмотреть файл

@ -1125,6 +1125,11 @@ namespace Introspection {
case "UIBarButtonItem":
case "MKUserTrackingBarButtonItem":
return true;
// xcode 16
case "UISearchTab":
case "UITab":
case "UITabGroup":
return true;
}
break;

Просмотреть файл

@ -95,6 +95,33 @@ namespace MonoTouchFixtures.UIKit {
Assert.IsTrue (tableView.SpringLoaded);
}
[Test]
public void UISearchTabSpringLoadTest ()
{
TestRuntime.AssertXcodeVersion (16, 0);
using var instance = new UISearchTab (null);
instance.SpringLoaded = true;
Assert.IsTrue (instance.SpringLoaded);
}
[Test]
public void UITabSpringLoadTest ()
{
TestRuntime.AssertXcodeVersion (16, 0);
using var instance = new UITab ("title", null, "identifier", null);
instance.SpringLoaded = true;
Assert.IsTrue (instance.SpringLoaded);
}
[Test]
public void UITabGroupSpringLoadTest ()
{
TestRuntime.AssertXcodeVersion (16, 0);
using var instance = new UITabGroup ("title", null, "identifier", new UITab [0], null);
instance.SpringLoaded = true;
Assert.IsTrue (instance.SpringLoaded);
}
#if HAS_INTENTUI
[Test]
public void INUIAddVoiceShortcutButtonTest ()

Просмотреть файл

@ -0,0 +1,90 @@
#if __IOS__ && !__MACCATALYST__
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using CoreGraphics;
using Foundation;
using ObjCRuntime;
using UIKit;
using NUnit.Framework;
namespace MonoTouchFixtures.UIKit {
[TestFixture]
[Preserve (AllMembers = true)]
public class UITextFormattingViewControllerFormattingDescriptorTest {
[Test]
public void SetProperties ()
{
using var obj = new UITextFormattingViewControllerFormattingDescriptor ();
Assert.Multiple (() => {
var textAlignments = UITextFormattingViewControllerTextAlignment.Left | UITextFormattingViewControllerTextAlignment.Center;
obj.TextAlignments = textAlignments;
var weakTestAlignments = ((IEnumerable<NSString>) obj.WeakTextAlignments).Select (v => v.ToString ()).ToArray ();
Assert.AreEqual (2, weakTestAlignments.Length, "WeakTextAlignments.Length");
Assert.That (weakTestAlignments, Does.Contain ((string) UITextFormattingViewControllerTextAlignment.Left.GetConstant ()), "WeakTextAlignments #1");
Assert.That (weakTestAlignments, Does.Contain ((string) UITextFormattingViewControllerTextAlignment.Center.GetConstant ()), "WeakTextAlignments #2");
Assert.AreEqual (textAlignments, obj.TextAlignments, "TextAlignments");
var textLists = UITextFormattingViewControllerTextList.Hyphen | UITextFormattingViewControllerTextList.Decimal;
obj.TextLists = textLists;
var weakTextLists = ((IEnumerable<NSString>) obj.WeakTextLists).Select (v => v.ToString ()).ToArray ();
Assert.AreEqual (2, weakTextLists.Length, "WeakTextLists.Length");
Assert.That (weakTextLists, Does.Contain ((string) UITextFormattingViewControllerTextList.Hyphen.GetConstant ()), "WeakTextLists #1");
Assert.That (weakTextLists, Does.Contain ((string) UITextFormattingViewControllerTextList.Decimal.GetConstant ()), "WeakTextLists #2");
Assert.AreEqual (textLists, obj.TextLists, "TextLists");
var highlights = UITextFormattingViewControllerHighlight.Purple | UITextFormattingViewControllerHighlight.Pink;
obj.Highlights = highlights;
var weakHighlights = ((IEnumerable<NSString>) obj.WeakHighlights).Select (v => v.ToString ()).ToArray ();
Assert.AreEqual (2, weakHighlights.Length, "WeakHighlights.Length");
Assert.That (weakHighlights, Does.Contain ((string) UITextFormattingViewControllerHighlight.Purple.GetConstant ()), "WeakHighlights #1");
Assert.That (weakHighlights, Does.Contain ((string) UITextFormattingViewControllerHighlight.Pink.GetConstant ()), "WeakHighlights #2");
Assert.AreEqual (highlights, obj.Highlights, "Highlights");
});
}
[Test]
public void Convert_Null ()
{
using (UIWindow w = new UIWindow ()) {
Assert.That (w.ConvertPointFromWindow (CGPoint.Empty, null), Is.EqualTo (CGPoint.Empty), "ConvertPointFromWindow");
Assert.That (w.ConvertPointToWindow (CGPoint.Empty, null), Is.EqualTo (CGPoint.Empty), "ConvertPointToWindow");
Assert.That (w.ConvertRectFromWindow (CGRect.Empty, null), Is.EqualTo (CGRect.Empty), "ConvertRectFromWindow");
Assert.That (w.ConvertRectToWindow (CGRect.Empty, null), Is.EqualTo (CGRect.Empty), "ConvertRectToWindow");
}
}
[Test]
public void IsKeyWindow_5199 ()
{
using (UIWindow w = new UIWindow ()) {
Assert.False (w.IsKeyWindow, "IsKeyWindow");
}
}
[Test]
public void Level ()
{
using (UIWindow w = new UIWindow ()) {
Assert.That (w.WindowLevel, Is.EqualTo ((nfloat) 0f), "default");
w.WindowLevel = UIWindowLevel.Normal;
Assert.That (w.WindowLevel, Is.EqualTo ((nfloat) 0f), "Normal");
w.WindowLevel = UIWindowLevel.Alert;
Assert.That (w.WindowLevel, Is.EqualTo ((nfloat) 2000f), "Alert");
#if !__TVOS__
w.WindowLevel = UIWindowLevel.StatusBar;
Assert.That (w.WindowLevel, Is.EqualTo ((nfloat) 1000f), "StatusBar");
#endif // !__TVOS__
}
}
}
}
#endif // __IOS__ && !__MACCATALYST__

Просмотреть файл

@ -0,0 +1,4 @@
# These enums have been removed in XAMCORE_5_0
!unknown-native-enum! NSCollectionViewDropOperation bound
!unknown-native-enum! NSCollectionViewItemHighlightState bound
!unknown-native-enum! NSCollectionViewScrollPosition bound

Просмотреть файл

@ -1,30 +0,0 @@
!missing-field! NSToolbarItemKey not bound
!missing-selector! NSToolbarItem::possibleLabels not bound
!missing-selector! NSToolbarItem::setPossibleLabels: not bound
!unknown-native-enum! NSCollectionViewDropOperation bound
!unknown-native-enum! NSCollectionViewItemHighlightState bound
!unknown-native-enum! NSCollectionViewScrollPosition bound
!deprecated-attribute-missing! NSToolbar::configurationDictionary missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::setConfigurationFromDictionary: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::setShowsBaselineSeparator: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::showsBaselineSeparator missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbarItem::allowsDuplicatesInToolbar missing a [Deprecated] attribute
!missing-enum! NSCursorFrameResizeDirections not bound
!missing-enum! NSCursorFrameResizePosition not bound
!missing-enum! NSHorizontalDirections not bound
!missing-enum! NSVerticalDirections not bound
!missing-field! NSToolbarNewIndexKey not bound
!missing-selector! +NSCursor::columnResizeCursor not bound
!missing-selector! +NSCursor::columnResizeCursorInDirections: not bound
!missing-selector! +NSCursor::frameResizeCursorFromPosition:inDirections: not bound
!missing-selector! +NSCursor::rowResizeCursor not bound
!missing-selector! +NSCursor::rowResizeCursorInDirections: not bound
!missing-selector! +NSCursor::zoomInCursor not bound
!missing-selector! +NSCursor::zoomOutCursor not bound
!missing-selector! NSToolbar::allowsDisplayModeCustomization not bound
!missing-selector! NSToolbar::itemIdentifiers not bound
!missing-selector! NSToolbar::removeItemWithItemIdentifier: not bound
!missing-selector! NSToolbar::setAllowsDisplayModeCustomization: not bound
!missing-selector! NSToolbar::setItemIdentifiers: not bound
!missing-selector! NSToolbarItem::isHidden not bound
!missing-selector! NSToolbarItem::setHidden: not bound

Просмотреть файл

@ -1,16 +1,440 @@
# deprecated types, not working at runtime
!missing-protocol! UISearchDisplayDelegate not bound
## we do not (need to) redefine the tintColor at every level, it will be dispatched to the right type
!missing-selector! UIRefreshControl::setTintColor: not bound
!missing-selector! UIRefreshControl::tintColor not bound
!missing-selector! UIToolbar::setTintColor: not bound
!missing-selector! UIToolbar::tintColor not bound
# from docs: Important: UIActionSheetDelegate is deprecated in iOS 8.
!missing-protocol-conformance! UIDocumentInteractionController should conform to UIActionSheetDelegate
## exception name, not clear if useful
!missing-field! UIApplicationInvalidInterfaceOrientationException not bound
## the category name is clear enough: UIPrintPaper_Deprecated_Nonfunctional
!missing-selector! UIPrintPaper::printRect not bound
# Added in UIAccessibility, this is later inlined in UIView, else we will
# add all of the properties to all objects which is not correct.
!missing-selector! NSObject::accessibilityDragSourceDescriptors not bound
!missing-selector! NSObject::accessibilityDropPointDescriptors not bound
!missing-selector! NSObject::setAccessibilityDragSourceDescriptors: not bound
!missing-selector! NSObject::setAccessibilityDropPointDescriptors: not bound
!missing-selector! NSObject::accessibilityActivateBlock not bound
!missing-selector! NSObject::accessibilityActivationPointBlock not bound
!missing-selector! NSObject::accessibilityAttributedHintBlock not bound
!missing-selector! NSObject::accessibilityAttributedLabelBlock not bound
!missing-selector! NSObject::accessibilityAttributedUserInputLabelsBlock not bound
!missing-selector! NSObject::accessibilityAttributedValueBlock not bound
!missing-selector! NSObject::accessibilityContainerTypeBlock not bound
!missing-selector! NSObject::accessibilityCustomActionsBlock not bound
!missing-selector! NSObject::accessibilityCustomRotorsBlock not bound
!missing-selector! NSObject::accessibilityDecrementBlock not bound
!missing-selector! NSObject::accessibilityDirectTouchOptions not bound
!missing-selector! NSObject::accessibilityElementsBlock not bound
!missing-selector! NSObject::accessibilityElementsHiddenBlock not bound
!missing-selector! NSObject::accessibilityFrameBlock not bound
!missing-selector! NSObject::accessibilityHeaderElementsBlock not bound
!missing-selector! NSObject::accessibilityHintBlock not bound
!missing-selector! NSObject::accessibilityIdentifierBlock not bound
!missing-selector! NSObject::accessibilityIncrementBlock not bound
!missing-selector! NSObject::accessibilityLabelBlock not bound
!missing-selector! NSObject::accessibilityLanguageBlock not bound
!missing-selector! NSObject::accessibilityMagicTapBlock not bound
!missing-selector! NSObject::accessibilityNavigationStyleBlock not bound
!missing-selector! NSObject::accessibilityPathBlock not bound
!missing-selector! NSObject::accessibilityPerformEscapeBlock not bound
!missing-selector! NSObject::accessibilityRespondsToUserInteractionBlock not bound
!missing-selector! NSObject::accessibilityShouldGroupAccessibilityChildrenBlock not bound
!missing-selector! NSObject::accessibilityTextualContextBlock not bound
!missing-selector! NSObject::accessibilityTraitsBlock not bound
!missing-selector! NSObject::accessibilityUserInputLabelsBlock not bound
!missing-selector! NSObject::accessibilityValueBlock not bound
!missing-selector! NSObject::accessibilityViewIsModalBlock not bound
!missing-selector! NSObject::accessibilityZoomInAtPoint: not bound
!missing-selector! NSObject::accessibilityZoomOutAtPoint: not bound
!missing-selector! NSObject::automationElements not bound
!missing-selector! NSObject::automationElementsBlock not bound
!missing-selector! NSObject::isAccessibilityElementBlock not bound
!missing-selector! NSObject::setAccessibilityActivateBlock: not bound
!missing-selector! NSObject::setAccessibilityActivationPointBlock: not bound
!missing-selector! NSObject::setAccessibilityAttributedHintBlock: not bound
!missing-selector! NSObject::setAccessibilityAttributedLabelBlock: not bound
!missing-selector! NSObject::setAccessibilityAttributedUserInputLabelsBlock: not bound
!missing-selector! NSObject::setAccessibilityAttributedValueBlock: not bound
!missing-selector! NSObject::setAccessibilityContainerTypeBlock: not bound
!missing-selector! NSObject::setAccessibilityCustomActionsBlock: not bound
!missing-selector! NSObject::setAccessibilityCustomRotorsBlock: not bound
!missing-selector! NSObject::setAccessibilityDecrementBlock: not bound
!missing-selector! NSObject::setAccessibilityDirectTouchOptions: not bound
!missing-selector! NSObject::setAccessibilityElementsBlock: not bound
!missing-selector! NSObject::setAccessibilityElementsHiddenBlock: not bound
!missing-selector! NSObject::setAccessibilityFrameBlock: not bound
!missing-selector! NSObject::setAccessibilityHeaderElementsBlock: not bound
!missing-selector! NSObject::setAccessibilityHintBlock: not bound
!missing-selector! NSObject::setAccessibilityIdentifierBlock: not bound
!missing-selector! NSObject::setAccessibilityIncrementBlock: not bound
!missing-selector! NSObject::setAccessibilityLabelBlock: not bound
!missing-selector! NSObject::setAccessibilityLanguageBlock: not bound
!missing-selector! NSObject::setAccessibilityMagicTapBlock: not bound
!missing-selector! NSObject::setAccessibilityNavigationStyleBlock: not bound
!missing-selector! NSObject::setAccessibilityPathBlock: not bound
!missing-selector! NSObject::setAccessibilityPerformEscapeBlock: not bound
!missing-selector! NSObject::setAccessibilityRespondsToUserInteractionBlock: not bound
!missing-selector! NSObject::setAccessibilityShouldGroupAccessibilityChildrenBlock: not bound
!missing-selector! NSObject::setAccessibilityTextualContextBlock: not bound
!missing-selector! NSObject::setAccessibilityTraitsBlock: not bound
!missing-selector! NSObject::setAccessibilityUserInputLabelsBlock: not bound
!missing-selector! NSObject::setAccessibilityValueBlock: not bound
!missing-selector! NSObject::setAccessibilityViewIsModalBlock: not bound
!missing-selector! NSObject::setAutomationElements: not bound
!missing-selector! NSObject::setAutomationElementsBlock: not bound
!missing-selector! NSObject::setIsAccessibilityElementBlock: not bound
## https://github.com/xamarin/xamarin-macios/issues/3213 should be fixed before conformance to 'UIStateRestoring' is restored.
!missing-protocol-conformance! UIViewController should conform to UIStateRestoring (defined in 'UIStateRestoration' category)
# Xcode 11
## Inherited from another protocol
!missing-protocol-member! NSCollectionLayoutVisibleItem::bounds not found
!missing-protocol-member! NSCollectionLayoutVisibleItem::center not found
!missing-protocol-member! NSCollectionLayoutVisibleItem::setCenter: not found
!missing-protocol-member! NSCollectionLayoutVisibleItem::setTransform: not found
!missing-protocol-member! NSCollectionLayoutVisibleItem::transform not found
## Not really useful to have them exposed
!missing-pinvoke! UIFontWeightForImageSymbolWeight is not bound
!missing-pinvoke! UIImageSymbolWeightForFontWeight is not bound
## Introduced and deprecated in Xcode 11 and likely it will be removed in a future beta
!missing-selector! UIGestureRecognizer::initWithCoder: not bound
!missing-selector! UIKeyCommand::action not bound
## Introduced in Xcode 11 b5 but unlikely to be there at the end of beta, these usualy get replaced by NSCopying protocol
!missing-selector! UIBarAppearance::copy not bound
!missing-selector! UIBarButtonItemAppearance::copy not bound
!missing-selector! UITabBarItemAppearance::copy not bound
## Xcode 11.4 Beta 2
## Duplicated entry field UIKeyInputF1 FB66299477
## https://github.com/xamarin/xamarin-macios/wiki/UIKit-iOS-xcode11.4-beta2
!missing-field! UIKeyInputF1 not bound
# Initial result from new rule extra-null-allowed
!extra-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewDataSource::GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)' has a extraneous [NullAllowed] on return type
!extra-null-allowed! 'System.Boolean UIKit.NSLayoutManagerDelegate::ShouldSetLineFragmentRect(UIKit.NSLayoutManager,CoreGraphics.CGRect&,CoreGraphics.CGRect&,System.Runtime.InteropServices.NFloat&,UIKit.NSTextContainer,Foundation.NSRange)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Boolean UIKit.NSLayoutManagerDelegate::ShouldSetLineFragmentRect(UIKit.NSLayoutManager,CoreGraphics.CGRect&,CoreGraphics.CGRect&,System.Runtime.InteropServices.NFloat&,UIKit.NSTextContainer,Foundation.NSRange)' has a extraneous [NullAllowed] on parameter #2
!extra-null-allowed! 'System.Boolean UIKit.NSLayoutManagerDelegate::ShouldSetLineFragmentRect(UIKit.NSLayoutManager,CoreGraphics.CGRect&,CoreGraphics.CGRect&,System.Runtime.InteropServices.NFloat&,UIKit.NSTextContainer,Foundation.NSRange)' has a extraneous [NullAllowed] on parameter #3
!extra-null-allowed! 'System.Boolean UIKit.UIApplication::CanOpenUrl(Foundation.NSUrl)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(Foundation.NSAttributedString,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Name(System.String)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Selector(ObjCRuntime.Selector)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIBezierPath::set_CGPath(CoreGraphics.CGPath)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UICollectionReusableView::ApplyLayoutAttributes(UIKit.UICollectionViewLayoutAttributes)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIContentContainer::WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::AddBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::RemoveBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIMarkupTextPrintFormatter::.ctor(System.String)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UINavigationController::set_ViewControllers(UIKit.UIViewController[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UINavigationController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIPopoverPresentationControllerDelegate::WillRepositionPopover(UIKit.UIPopoverPresentationController,CoreGraphics.CGRect&,UIKit.UIView&)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UIPopoverPresentationControllerDelegate::WillRepositionPopover(UIKit.UIPopoverPresentationController,CoreGraphics.CGRect&,UIKit.UIView&)' has a extraneous [NullAllowed] on parameter #2
!extra-null-allowed! 'System.Void UIKit.UISimpleTextPrintFormatter::.ctor(Foundation.NSAttributedString)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UISimpleTextPrintFormatter::.ctor(System.String)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITabBar::BeginCustomizingItems(UIKit.UITabBarItem[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextDragPreviewRenderer::Adjust(CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGPoint)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextDragPreviewRenderer::Adjust(CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGPoint)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UITextDragPreviewRenderer::Adjust(CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGPoint)' has a extraneous [NullAllowed] on parameter #2
!extra-null-allowed! 'System.Void UIKit.UITextField::set_WeakDefaultTextAttributes(Foundation.NSDictionary)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextInputAssistantItem::set_LeadingBarButtonGroups(UIKit.UIBarButtonItemGroup[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextInputAssistantItem::set_TrailingBarButtonGroups(UIKit.UIBarButtonItemGroup[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextView::set_TypingAttributes(Foundation.NSDictionary)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIView::set_MotionEffects(UIKit.UIMotionEffect[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'UIKit.IUITextDocumentProxy UIKit.UIInputViewController::get_TextDocumentProxy()' has a extraneous [NullAllowed] on return type
!extra-null-allowed! 'UIKit.UIView UIKit.UIScreen::SnapshotView(System.Boolean)' has a extraneous [NullAllowed] on return type
# Initial result from new rule missing-null-allowed
!missing-null-allowed! 'CoreAnimation.CADisplayLink UIKit.UIScreen::CreateDisplayLink(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSArray Foundation.NSBundle::LoadNib(System.String,Foundation.NSObject,Foundation.NSDictionary)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIButton::get_CurrentAttributedTitle()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIButton::GetAttributedTitle(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIPickerViewDelegate::GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSData UIKit.UIPasteboard::DataForPasteboardType(System.String)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSData[] UIKit.UIPasteboard::GetDataForPasteboardType(System.String,Foundation.NSIndexSet)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'Foundation.NSData[] UIKit.UIPasteboard::GetDataForPasteboardType(System.String,Foundation.NSIndexSet)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSData[] UIKit.UIPasteboard::GetValuesForPasteboardType(System.String,Foundation.NSIndexSet)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'Foundation.NSData[] UIKit.UIPasteboard::GetValuesForPasteboardType(System.String,Foundation.NSIndexSet)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UIBarItem::_GetTitleTextAttributes(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UICollectionViewLayoutInvalidationContext::get_InvalidatedDecorationIndexPaths()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UICollectionViewLayoutInvalidationContext::get_InvalidatedSupplementaryIndexPaths()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UIDocument::GetFileAttributesToWrite(Foundation.NSUrl,UIKit.UIDocumentSaveOperation,Foundation.NSError&)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UIMotionEffect::ComputeKeyPathsAndRelativeValues(UIKit.UIOffset)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UISearchBar::_GetScopeBarButtonTitleTextAttributes(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UISegmentedControl::_GetTitleTextAttributes(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewFocusUpdateContext::get_NextFocusedIndexPath()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewFocusUpdateContext::get_PreviouslyFocusedIndexPath()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewDelegate::WillDeselectRow(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewDelegate::WillSelectRow(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewFocusUpdateContext::get_NextFocusedIndexPath()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewFocusUpdateContext::get_PreviouslyFocusedIndexPath()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath[] UIKit.UICollectionViewLayoutInvalidationContext::get_InvalidatedItemIndexPaths()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexSet UIKit.UIPasteboard::ItemSetWithPasteboardTypes(System.String[])' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSNumber[] UIKit.UIImagePickerController::AvailableCaptureModesForCameraDevice(UIKit.UIImagePickerControllerCameraDevice)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIActivityItemProvider::get_PlaceholderItem()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIActivityItemSource::GetItemForActivity(UIKit.UIActivityViewController,Foundation.NSString)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIDocument::ContentsForType(System.String,Foundation.NSError&)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIFontDescriptor::GetObject(Foundation.NSString)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIManagedDocument::AdditionalContent(Foundation.NSUrl,Foundation.NSError&)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIPasteboard::GetValue(System.String)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIResponder::GetTargetForAction(ObjCRuntime.Selector,Foundation.NSObject)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject[] UIKit.UICollisionBehavior::get_BoundaryIdentifiers()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSProgress UIKit.UIDocument::get_Progress()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::get_AllTouches()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForGestureRecognizer(UIKit.UIGestureRecognizer)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForView(UIKit.UIView)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForWindow(UIKit.UIWindow)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UIActivity::get_Type()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UIActivityItemProvider::get_ActivityType()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UICollectionReusableView::get_ReuseIdentifier()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UIResponder::get_TextInputContextIdentifier()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UITableViewCell::get_ReuseIdentifier()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UITableViewHeaderFooterView::get_ReuseIdentifier()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSUuid UIKit.UIDevice::get_IdentifierForVendor()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'ObjCRuntime.Class UIKit.UIStateRestoring::get_ObjectRestorationClass()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.Boolean UIKit.UIApplicationDelegate::FinishedLaunching(UIKit.UIApplication,Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Boolean UIKit.UIApplicationDelegate::WillFinishLaunching(UIKit.UIApplication,Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #2
!missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #3
!missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #4
!missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::WriteAdditionalContent(Foundation.NSObject,Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError&)' is missing an [NullAllowed] on parameter #2
!missing-null-allowed! 'System.Boolean UIKit.UIPrintInteractionController::PrintToPrinter(UIKit.UIPrinter,UIKit.UIPrintInteractionCompletionHandler)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Boolean UIKit.UIScrollView::TouchesShouldBegin(Foundation.NSSet,UIKit.UIEvent,UIKit.UIView)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2
!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2
!missing-null-allowed! 'System.Double UIKit.UIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.IntPtr UIKit.UIApplication::BeginBackgroundTask(System.String,System.Action)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.IntPtr UIKit.UIApplication::BeginBackgroundTask(System.String,System.Action)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.String UIKit.UIActivity::get_Title()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIAlertAction::get_Title()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIButton::get_CurrentTitle()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIButton::Title(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UICollectionViewLayoutAttributes::get_RepresentedElementKind()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIDocument::get_FileType()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIDocument::get_SavingFileType()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPickerViewAccessibilityDelegate::GetAccessibilityHint(UIKit.UIPickerView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPickerViewAccessibilityDelegate::GetAccessibilityLabel(UIKit.UIPickerView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPickerViewDelegate::GetTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPrinter::get_DisplayLocation()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPrinter::get_MakeAndModel()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIScrollViewAccessibilityDelegate::GetAccessibilityScrollStatus(UIKit.UIScrollView)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UISegmentedControl::TitleAt(System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITableViewDataSource::TitleForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITableViewDataSource::TitleForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITableViewDelegate::TitleForDeleteConfirmation(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITextDocumentProxy::get_DocumentContextAfterInput()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITextDocumentProxy::get_DocumentContextBeforeInput()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITextInputMode::get_PrimaryLanguage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UIControl::GetActions(Foundation.NSObject,UIKit.UIControlEvent)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UIDictationPhrase::get_AlternativeInterpretations()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UIImagePickerController::AvailableMediaTypes(UIKit.UIImagePickerControllerSourceType)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UITableViewDataSource::SectionIndexTitles(UIKit.UITableView)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UITextChecker::CompletionsForPartialWordRange(Foundation.NSRange,System.String,System.String)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UITextChecker::GuessesForWordRange(Foundation.NSRange,System.String,System.String)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityAttributedUserInputLabels(Foundation.NSAttributedString[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityUserInputLabels(System.String[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIAlertController::AddTextField(System.Action`1<UIKit.UITextField>)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIApplicationDelegate::HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action`1<Foundation.NSDictionary>)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UICollectionViewController::set_CollectionView(UIKit.UICollectionView)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIControl::EndTracking(UIKit.UITouch,UIKit.UIEvent)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIDocument::set_FileModificationDate(Foundation.NSDate)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIDocument::set_UndoManager(Foundation.NSUndoManager)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIDocument::set_UserActivity(Foundation.NSUserActivity)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIDocumentInteractionController::set_Url(Foundation.NSUrl)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIGestureRecognizer::.ctor(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIGestureRecognizer::.ctor(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIImagePickerController::set_CameraOverlayView(UIKit.UIView)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UILabel::set_Font(UIKit.UIFont)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIManagedDocument::set_ModelConfiguration(System.String)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIManagedDocument::set_PersistentStoreOptions(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UINavigationBar::set_Items(UIKit.UINavigationItem[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UINavigationBar::SetItems(UIKit.UINavigationItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UINavigationItem::SetLeftBarButtonItems(UIKit.UIBarButtonItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UINavigationItem::SetRightBarButtonItems(UIKit.UIBarButtonItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPageViewController::SetViewControllers(UIKit.UIViewController[],UIKit.UIPageViewControllerNavigationDirection,System.Boolean,UIKit.UICompletionHandler)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPasteboard::set_Images(UIKit.UIImage[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPopoverPresentationController::set_PassthroughViews(UIKit.UIView[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPopoverPresentationController::set_SourceView(UIKit.UIView)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrinter::ContactPrinter(UIKit.UIPrinterContactPrinterHandler)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInfo::set_PrinterID(System.String)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintFormatter(UIKit.UIPrintFormatter)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintInfo(UIKit.UIPrintInfo)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintingItem(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintingItems(Foundation.NSObject[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintPageRenderer(UIKit.UIPrintPageRenderer)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIResponder::PressesBegan(Foundation.NSSet`1<UIKit.UIPress>,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIResponder::PressesCancelled(Foundation.NSSet`1<UIKit.UIPress>,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIResponder::PressesChanged(Foundation.NSSet`1<UIKit.UIPress>,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIResponder::PressesEnded(Foundation.NSSet`1<UIKit.UIPress>,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIScene::set_Title(System.String)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UISearchBar::_SetScopeBarButtonTitle(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISearchTextField::set_TokenBackgroundColor(UIKit.UIColor)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::.ctor(Foundation.NSArray)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::_SetTitleTextAttributes(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::InsertSegment(System.String,System.IntPtr,System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::InsertSegment(UIKit.UIImage,System.IntPtr,System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::SetImage(UIKit.UIImage,System.IntPtr)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::SetTitle(System.String,System.IntPtr)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITabBarController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITableViewController::set_TableView(UIKit.UITableView)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITableViewDelegate::DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UITableViewHeaderFooterView::.ctor(Foundation.NSString)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextView::set_AttributedText(Foundation.NSAttributedString)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextView::set_WeakLinkTextAttributes(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIViewController::set_TabBarItem(UIKit.UITabBarItem)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.UIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForDismissedController(UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UINavigationControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UITabBarControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::get_ExtraLineFragmentTextContainer()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIAlertAction UIKit.UIAlertAction::Create(System.String,UIKit.UIAlertActionStyle,System.Action`1<UIKit.UIAlertAction>)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'UIKit.UIBezierPath UIKit.UICollisionBehavior::GetBoundary(Foundation.NSObject)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionView UIKit.UICollectionViewLayout::get_CollectionView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::FinalLayoutAttributesForDisappearingDecorationElement(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::FinalLayoutAttributesForDisappearingItem(Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::FinalLayoutAttributesForDisappearingSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::InitialLayoutAttributesForAppearingDecorationElement(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::InitialLayoutAttributesForAppearingItem(Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::InitialLayoutAttributesForAppearingSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::LayoutAttributesForDecorationView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::LayoutAttributesForItem(Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::LayoutAttributesForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UIDynamicAnimator::GetLayoutAttributesForCell(Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UIDynamicAnimator::GetLayoutAttributesForDecorationView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UIDynamicAnimator::GetLayoutAttributesForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes[] UIKit.UICollectionViewLayout::LayoutAttributesForElementsInRect(CoreGraphics.CGRect)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::get_CurrentTitleShadowColor()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::TitleColor(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::TitleShadowColor(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIDynamicAnimator UIKit.UIDynamicBehavior::get_DynamicAnimator()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIFontDescriptor UIKit.UIFontDescriptor::CreateWithTraits(UIKit.UIFontDescriptorSymbolicTraits)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIGestureRecognizer UIKit.UINavigationController::get_InteractivePopGestureRecognizer()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIGestureRecognizer[] UIKit.UITouch::get_GestureRecognizers()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIActivity::get_Image()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIActivityItemSource::GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackButtonBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarButtonItemStyle,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::BackgroundImageForState(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::get_CurrentBackgroundImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::get_CurrentImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::ImageForState(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UINavigationBar::GetBackgroundImage(UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UINavigationBar::GetBackgroundImage(UIKit.UIBarPosition,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::BackgroundImageForBarPosition(UIKit.UIBarPosition,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::GetImageForSearchBarIcon(UIKit.UISearchBarIcon,UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::GetScopeBarButtonBackgroundImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::GetScopeBarButtonDividerImage(UIKit.UIControlState,UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::GetSearchFieldBackgroundImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISegmentedControl::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISegmentedControl::ImageAt(System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentMaxTrackImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentMinTrackImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentThumbImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::MaxTrackImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::MinTrackImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::ThumbImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::BackgroundImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::GetDecrementImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::GetDividerImage(UIKit.UIControlState,UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::GetIncrementImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIToolbar::GetBackgroundImage(UIKit.UIToolbarPosition,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIToolbar::GetShadowImage(UIKit.UIToolbarPosition)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImageView UIKit.UIButton::get_ImageView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIInputViewController UIKit.UIResponder::get_InputAccessoryViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIInputViewController UIKit.UIResponder::get_InputViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIInterfaceOrientationMask UIKit.UIApplication::SupportedInterfaceOrientationsForWindow(UIKit.UIWindow)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'UIKit.UIInterfaceOrientationMask UIKit.UIApplicationDelegate::GetSupportedInterfaceOrientations(UIKit.UIApplication,UIKit.UIWindow)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'UIKit.UIKeyCommand[] UIKit.UIResponder::get_KeyCommands()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UILabel UIKit.UIButton::get_TitleLabel()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::get_BackItem()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::get_TopItem()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::PopNavigationItem(System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPasteboard UIKit.UIPasteboard::FromName(System.String,System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPinchGestureRecognizer UIKit.UIScrollView::get_PinchGestureRecognizer()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPresentationController UIKit.UIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPrinter UIKit.UIPrinterPickerController::get_SelectedPrinter()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPrintFormatter[] UIKit.UIPrintPageRenderer::PrintFormattersForPage(System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPrintInfo UIKit.UIPrintInfo::FromDictionary(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'UIKit.UIPrintPageRenderer UIKit.UIPrintFormatter::get_PrintPageRenderer()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPrintPaper UIKit.UIPrintInteractionController::get_PrintPaper()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIResponder UIKit.UIResponder::get_NextResponder()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIScreen UIKit.UIScreen::get_MirroredScreen()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIScreenMode UIKit.UIScreen::get_PreferredMode()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UITextField[] UIKit.UIAlertController::get_TextFields()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UITextInputMode UIKit.UIResponder::get_TextInputMode()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UITextPosition UIKit.UITextInputTokenizer::GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UITextRange UIKit.UITextInputTokenizer::GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIDocumentInteractionControllerDelegate::ViewForPreview(UIKit.UIDocumentInteractionController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIDynamicAnimator::get_ReferenceView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIGestureRecognizer::get_View()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIPickerView::ViewFor(System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIPresentationController::get_ContainerView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIPresentationController::get_PresentedView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputAccessoryView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIScrollViewDelegate::ViewForZoomingInScrollView(UIKit.UIScrollView)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UITouch::get_View()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIView::get_Superview()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIView::SnapshotView(System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIView::ViewWithTag(System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIActivity::get_ViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIApplicationDelegate::GetViewController(UIKit.UIApplication,System.String[],Foundation.NSCoder)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_TopViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_VisibleViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::PopViewController(System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrinterPickerControllerDelegate::GetParentViewController(UIKit.UIPrinterPickerController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrintInteractionControllerDelegate::GetViewController(UIKit.UIPrintInteractionController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISearchController::get_SearchResultsController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewController_UIViewController::SeparateSecondaryViewControllerForSplitViewController(UIKit.UIViewController,UIKit.UISplitViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController(UIKit.UIStoryboardViewControllerCreator)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToRootViewController(System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToViewController(UIKit.UIViewController,System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UIPageViewController::get_ViewControllers()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIWindow UIKit.UITouch::get_Window()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIWindow UIKit.UIView::get_Window()' is missing an [NullAllowed] on return type
## These are inlined by protocol adoption so you can't really add such decoration
!missing-requires-super! UIControl::contextMenuInteraction:willDisplayMenuForConfiguration:animator: is missing an [RequiresSuper] attribute
!missing-requires-super! UIControl::contextMenuInteraction:willEndForConfiguration:animator: is missing an [RequiresSuper] attribute
## Grouped nint constants
!unknown-native-enum! UIFocusGroupPriority bound
## Selectors documented in web docs but not in header files
!missing-selector! +NSToolbarItem::itemWithItemIdentifier:barButtonItem: not bound
!missing-selector! NSSharingServicePickerToolbarItem::activityItemsConfiguration not bound
!missing-selector! NSSharingServicePickerToolbarItem::setActivityItemsConfiguration: not bound
!missing-selector! NSSharingServicePickerTouchBarItem::activityItemsConfiguration not bound
!missing-selector! NSSharingServicePickerTouchBarItem::setActivityItemsConfiguration: not bound
## macro is used in UIBarCommon.h: #define UIToolbarPosition UIBarPosition
!unknown-native-enum! UIToolbarPosition bound
@ -39,4 +463,15 @@
## manually bound
!missing-field! UIListSeparatorAutomaticInsets not bound
!incorrect-protocol-member! UISearchSuggestion::localizedAttributedSuggestion is REQUIRED and should be abstract
!incorrect-protocol-member! UICalendarViewDelegate::calendarView:decorationForDateComponents: is OPTIONAL and should NOT be abstract
# cannot be made abstract until xamcore 5
!incorrect-protocol-member! UIPopoverPresentationControllerSourceItem::frameInView: is REQUIRED and should be abstract
!incorrect-protocol-member! UIMenuLeaf::selectedImage is REQUIRED and should be abstract
!incorrect-protocol-member! UIMenuLeaf::setSelectedImage: is REQUIRED and should be abstract
!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound
# Bound on the NSObjectProtocol protocol
!missing-selector! UIActivityCollaborationModeRestriction::description not bound

Просмотреть файл

@ -1,728 +0,0 @@
!extra-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewDataSource::GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)' has a extraneous [NullAllowed] on return type
!extra-null-allowed! 'System.Boolean UIKit.NSLayoutManagerDelegate::ShouldSetLineFragmentRect(UIKit.NSLayoutManager,CoreGraphics.CGRect&,CoreGraphics.CGRect&,System.Runtime.InteropServices.NFloat&,UIKit.NSTextContainer,Foundation.NSRange)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Boolean UIKit.NSLayoutManagerDelegate::ShouldSetLineFragmentRect(UIKit.NSLayoutManager,CoreGraphics.CGRect&,CoreGraphics.CGRect&,System.Runtime.InteropServices.NFloat&,UIKit.NSTextContainer,Foundation.NSRange)' has a extraneous [NullAllowed] on parameter #2
!extra-null-allowed! 'System.Boolean UIKit.NSLayoutManagerDelegate::ShouldSetLineFragmentRect(UIKit.NSLayoutManager,CoreGraphics.CGRect&,CoreGraphics.CGRect&,System.Runtime.InteropServices.NFloat&,UIKit.NSTextContainer,Foundation.NSRange)' has a extraneous [NullAllowed] on parameter #3
!extra-null-allowed! 'System.Boolean UIKit.UIApplication::CanOpenUrl(Foundation.NSUrl)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(Foundation.NSAttributedString,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,UIKit.UIAccessibilityCustomActionHandler)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Name(System.String)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::set_Selector(ObjCRuntime.Selector)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIBezierPath::set_CGPath(CoreGraphics.CGPath)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UICollectionReusableView::ApplyLayoutAttributes(UIKit.UICollectionViewLayoutAttributes)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIContentContainer::WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::AddBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIDynamicAnimator::RemoveBehavior(UIKit.UIDynamicBehavior)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIMarkupTextPrintFormatter::.ctor(System.String)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UINavigationController::set_ViewControllers(UIKit.UIViewController[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UINavigationController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIPopoverPresentationControllerDelegate::WillRepositionPopover(UIKit.UIPopoverPresentationController,CoreGraphics.CGRect&,UIKit.UIView&)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UIPopoverPresentationControllerDelegate::WillRepositionPopover(UIKit.UIPopoverPresentationController,CoreGraphics.CGRect&,UIKit.UIView&)' has a extraneous [NullAllowed] on parameter #2
!extra-null-allowed! 'System.Void UIKit.UISimpleTextPrintFormatter::.ctor(Foundation.NSAttributedString)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UISimpleTextPrintFormatter::.ctor(System.String)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITabBar::BeginCustomizingItems(UIKit.UITabBarItem[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextDragPreviewRenderer::Adjust(CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGPoint)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextDragPreviewRenderer::Adjust(CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGPoint)' has a extraneous [NullAllowed] on parameter #1
!extra-null-allowed! 'System.Void UIKit.UITextDragPreviewRenderer::Adjust(CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGRect&,CoreGraphics.CGPoint)' has a extraneous [NullAllowed] on parameter #2
!extra-null-allowed! 'System.Void UIKit.UITextField::set_WeakDefaultTextAttributes(Foundation.NSDictionary)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextInputAssistantItem::set_LeadingBarButtonGroups(UIKit.UIBarButtonItemGroup[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextInputAssistantItem::set_TrailingBarButtonGroups(UIKit.UIBarButtonItemGroup[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UITextView::set_TypingAttributes(Foundation.NSDictionary)' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'System.Void UIKit.UIView::set_MotionEffects(UIKit.UIMotionEffect[])' has a extraneous [NullAllowed] on parameter #0
!extra-null-allowed! 'UIKit.IUITextDocumentProxy UIKit.UIInputViewController::get_TextDocumentProxy()' has a extraneous [NullAllowed] on return type
!extra-null-allowed! 'UIKit.UIView UIKit.UIScreen::SnapshotView(System.Boolean)' has a extraneous [NullAllowed] on return type
!incorrect-protocol-member! UICalendarViewDelegate::calendarView:decorationForDateComponents: is OPTIONAL and should NOT be abstract
!incorrect-protocol-member! UIMenuLeaf::selectedImage is REQUIRED and should be abstract
!incorrect-protocol-member! UIMenuLeaf::setSelectedImage: is REQUIRED and should be abstract
!incorrect-protocol-member! UIPopoverPresentationControllerSourceItem::frameInView: is REQUIRED and should be abstract
!incorrect-protocol-member! UISearchSuggestion::localizedAttributedSuggestion is REQUIRED and should be abstract
!missing-field! UIApplicationInvalidInterfaceOrientationException not bound
!missing-field! UIKeyInputF1 not bound
!missing-null-allowed! 'CoreAnimation.CADisplayLink UIKit.UIScreen::CreateDisplayLink(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSArray Foundation.NSBundle::LoadNib(System.String,Foundation.NSObject,Foundation.NSDictionary)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIButton::get_CurrentAttributedTitle()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIButton::GetAttributedTitle(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSAttributedString UIKit.UIPickerViewDelegate::GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSData UIKit.UIPasteboard::DataForPasteboardType(System.String)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSData[] UIKit.UIPasteboard::GetDataForPasteboardType(System.String,Foundation.NSIndexSet)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'Foundation.NSData[] UIKit.UIPasteboard::GetDataForPasteboardType(System.String,Foundation.NSIndexSet)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSData[] UIKit.UIPasteboard::GetValuesForPasteboardType(System.String,Foundation.NSIndexSet)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'Foundation.NSData[] UIKit.UIPasteboard::GetValuesForPasteboardType(System.String,Foundation.NSIndexSet)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UIBarItem::_GetTitleTextAttributes(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UICollectionViewLayoutInvalidationContext::get_InvalidatedDecorationIndexPaths()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UICollectionViewLayoutInvalidationContext::get_InvalidatedSupplementaryIndexPaths()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UIDocument::GetFileAttributesToWrite(Foundation.NSUrl,UIKit.UIDocumentSaveOperation,Foundation.NSError&)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UIMotionEffect::ComputeKeyPathsAndRelativeValues(UIKit.UIOffset)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UISearchBar::_GetScopeBarButtonTitleTextAttributes(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSDictionary UIKit.UISegmentedControl::_GetTitleTextAttributes(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewFocusUpdateContext::get_NextFocusedIndexPath()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UICollectionViewFocusUpdateContext::get_PreviouslyFocusedIndexPath()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewDelegate::WillDeselectRow(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewDelegate::WillSelectRow(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewFocusUpdateContext::get_NextFocusedIndexPath()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath UIKit.UITableViewFocusUpdateContext::get_PreviouslyFocusedIndexPath()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexPath[] UIKit.UICollectionViewLayoutInvalidationContext::get_InvalidatedItemIndexPaths()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSIndexSet UIKit.UIPasteboard::ItemSetWithPasteboardTypes(System.String[])' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSNumber[] UIKit.UIImagePickerController::AvailableCaptureModesForCameraDevice(UIKit.UIImagePickerControllerCameraDevice)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIActivityItemProvider::get_PlaceholderItem()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIActivityItemSource::GetItemForActivity(UIKit.UIActivityViewController,Foundation.NSString)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIDocument::ContentsForType(System.String,Foundation.NSError&)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIFontDescriptor::GetObject(Foundation.NSString)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIManagedDocument::AdditionalContent(Foundation.NSUrl,Foundation.NSError&)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIPasteboard::GetValue(System.String)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject UIKit.UIResponder::GetTargetForAction(ObjCRuntime.Selector,Foundation.NSObject)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSObject[] UIKit.UICollisionBehavior::get_BoundaryIdentifiers()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSProgress UIKit.UIDocument::get_Progress()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::get_AllTouches()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForGestureRecognizer(UIKit.UIGestureRecognizer)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForView(UIKit.UIView)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSSet UIKit.UIEvent::TouchesForWindow(UIKit.UIWindow)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UIActivity::get_Type()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UIActivityItemProvider::get_ActivityType()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UICollectionReusableView::get_ReuseIdentifier()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UIResponder::get_TextInputContextIdentifier()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UITableViewCell::get_ReuseIdentifier()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSString UIKit.UITableViewHeaderFooterView::get_ReuseIdentifier()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'Foundation.NSUuid UIKit.UIDevice::get_IdentifierForVendor()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'ObjCRuntime.Class UIKit.UIStateRestoring::get_ObjectRestorationClass()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.Boolean UIKit.UIApplicationDelegate::FinishedLaunching(UIKit.UIApplication,Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Boolean UIKit.UIApplicationDelegate::WillFinishLaunching(UIKit.UIApplication,Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #2
!missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #3
!missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)' is missing an [NullAllowed] on parameter #4
!missing-null-allowed! 'System.Boolean UIKit.UIManagedDocument::WriteAdditionalContent(Foundation.NSObject,Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError&)' is missing an [NullAllowed] on parameter #2
!missing-null-allowed! 'System.Boolean UIKit.UIPrintInteractionController::PrintToPrinter(UIKit.UIPrinter,UIKit.UIPrintInteractionCompletionHandler)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Boolean UIKit.UIScrollView::TouchesShouldBegin(Foundation.NSSet,UIKit.UIEvent,UIKit.UIView)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2
!missing-null-allowed! 'System.Boolean UIKit.UISplitViewControllerDelegate::EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)' is missing an [NullAllowed] on parameter #2
!missing-null-allowed! 'System.Double UIKit.UIViewControllerAnimatedTransitioning::TransitionDuration(UIKit.IUIViewControllerContextTransitioning)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.IntPtr UIKit.UIApplication::BeginBackgroundTask(System.String,System.Action)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.IntPtr UIKit.UIApplication::BeginBackgroundTask(System.String,System.Action)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.String UIKit.UIActivity::get_Title()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIAlertAction::get_Title()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIButton::get_CurrentTitle()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIButton::Title(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UICollectionViewLayoutAttributes::get_RepresentedElementKind()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIDocument::get_FileType()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIDocument::get_SavingFileType()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPickerViewAccessibilityDelegate::GetAccessibilityHint(UIKit.UIPickerView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPickerViewAccessibilityDelegate::GetAccessibilityLabel(UIKit.UIPickerView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPickerViewDelegate::GetTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPrinter::get_DisplayLocation()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIPrinter::get_MakeAndModel()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UIScrollViewAccessibilityDelegate::GetAccessibilityScrollStatus(UIKit.UIScrollView)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UISegmentedControl::TitleAt(System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITableViewDataSource::TitleForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITableViewDataSource::TitleForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITableViewDelegate::TitleForDeleteConfirmation(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITextDocumentProxy::get_DocumentContextAfterInput()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITextDocumentProxy::get_DocumentContextBeforeInput()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String UIKit.UITextInputMode::get_PrimaryLanguage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UIControl::GetActions(Foundation.NSObject,UIKit.UIControlEvent)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UIDictationPhrase::get_AlternativeInterpretations()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UIImagePickerController::AvailableMediaTypes(UIKit.UIImagePickerControllerSourceType)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UITableViewDataSource::SectionIndexTitles(UIKit.UITableView)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UITextChecker::CompletionsForPartialWordRange(Foundation.NSRange,System.String,System.String)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.String[] UIKit.UITextChecker::GuessesForWordRange(Foundation.NSRange,System.String,System.String)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityAttributedUserInputLabels(Foundation.NSAttributedString[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void Foundation.NSObject::set_AccessibilityUserInputLabels(System.String[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIAccessibilityCustomAction::.ctor(System.String,Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIAlertController::AddTextField(System.Action`1<UIKit.UITextField>)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIApplicationDelegate::HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action`1<Foundation.NSDictionary>)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UICollectionViewController::set_CollectionView(UIKit.UICollectionView)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIControl::EndTracking(UIKit.UITouch,UIKit.UIEvent)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIDocument::set_FileModificationDate(Foundation.NSDate)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIDocument::set_UndoManager(Foundation.NSUndoManager)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIDocument::set_UserActivity(Foundation.NSUserActivity)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIDocumentInteractionController::set_Url(Foundation.NSUrl)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIGestureRecognizer::.ctor(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIGestureRecognizer::.ctor(Foundation.NSObject,ObjCRuntime.Selector)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIImagePickerController::set_CameraOverlayView(UIKit.UIView)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UILabel::set_Font(UIKit.UIFont)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIManagedDocument::set_ModelConfiguration(System.String)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIManagedDocument::set_PersistentStoreOptions(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UINavigationBar::set_Items(UIKit.UINavigationItem[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UINavigationBar::SetItems(UIKit.UINavigationItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UINavigationItem::SetLeftBarButtonItems(UIKit.UIBarButtonItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UINavigationItem::SetRightBarButtonItems(UIKit.UIBarButtonItem[],System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPageViewController::SetViewControllers(UIKit.UIViewController[],UIKit.UIPageViewControllerNavigationDirection,System.Boolean,UIKit.UICompletionHandler)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPasteboard::set_Images(UIKit.UIImage[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPopoverPresentationController::set_PassthroughViews(UIKit.UIView[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPopoverPresentationController::set_SourceView(UIKit.UIView)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrinter::ContactPrinter(UIKit.UIPrinterContactPrinterHandler)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInfo::set_PrinterID(System.String)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintFormatter(UIKit.UIPrintFormatter)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintInfo(UIKit.UIPrintInfo)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintingItem(Foundation.NSObject)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintingItems(Foundation.NSObject[])' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIPrintInteractionController::set_PrintPageRenderer(UIKit.UIPrintPageRenderer)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIResponder::PressesBegan(Foundation.NSSet`1<UIKit.UIPress>,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIResponder::PressesCancelled(Foundation.NSSet`1<UIKit.UIPress>,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIResponder::PressesChanged(Foundation.NSSet`1<UIKit.UIPress>,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIResponder::PressesEnded(Foundation.NSSet`1<UIKit.UIPress>,UIKit.UIPressesEvent)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIScene::set_Title(System.String)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UIScrollViewDelegate::ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UISearchBar::_SetScopeBarButtonTitle(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISearchTextField::set_TokenBackgroundColor(UIKit.UIColor)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::.ctor(Foundation.NSArray)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::_SetTitleTextAttributes(Foundation.NSDictionary,UIKit.UIControlState)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::InsertSegment(System.String,System.IntPtr,System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::InsertSegment(UIKit.UIImage,System.IntPtr,System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::SetImage(UIKit.UIImage,System.IntPtr)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UISegmentedControl::SetTitle(System.String,System.IntPtr)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITabBarController::SetViewControllers(UIKit.UIViewController[],System.Boolean)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITableViewController::set_TableView(UIKit.UITableView)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITableViewDelegate::DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'System.Void UIKit.UITableViewHeaderFooterView::.ctor(Foundation.NSString)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::SelectionWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextDidChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextInputDelegate::TextWillChange(UIKit.IUITextInput)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextView::set_AttributedText(Foundation.NSAttributedString)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UITextView::set_WeakLinkTextAttributes(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'System.Void UIKit.UIViewController::set_TabBarItem(UIKit.UITabBarItem)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'UIKit.IUIStateRestoring UIKit.UIStateRestoring::get_RestorationParent()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UINavigationControllerDelegate::GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UITabBarControllerDelegate::GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForDismissedController(UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerAnimatedTransitioning UIKit.UIViewControllerTransitioningDelegate::GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UINavigationControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UITabBarControllerDelegate::GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.IUIViewControllerInteractiveTransitioning UIKit.UIViewControllerTransitioningDelegate::GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.NSTextContainer UIKit.NSLayoutManager::get_ExtraLineFragmentTextContainer()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIAlertAction UIKit.UIAlertAction::Create(System.String,UIKit.UIAlertActionStyle,System.Action`1<UIKit.UIAlertAction>)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'UIKit.UIBezierPath UIKit.UICollisionBehavior::GetBoundary(Foundation.NSObject)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionView UIKit.UICollectionViewLayout::get_CollectionView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::FinalLayoutAttributesForDisappearingDecorationElement(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::FinalLayoutAttributesForDisappearingItem(Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::FinalLayoutAttributesForDisappearingSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::InitialLayoutAttributesForAppearingDecorationElement(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::InitialLayoutAttributesForAppearingItem(Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::InitialLayoutAttributesForAppearingSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::LayoutAttributesForDecorationView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::LayoutAttributesForItem(Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UICollectionViewLayout::LayoutAttributesForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UIDynamicAnimator::GetLayoutAttributesForCell(Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UIDynamicAnimator::GetLayoutAttributesForDecorationView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes UIKit.UIDynamicAnimator::GetLayoutAttributesForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UICollectionViewLayoutAttributes[] UIKit.UICollectionViewLayout::LayoutAttributesForElementsInRect(CoreGraphics.CGRect)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::get_CurrentTitleShadowColor()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::TitleColor(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIColor UIKit.UIButton::TitleShadowColor(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIDynamicAnimator UIKit.UIDynamicBehavior::get_DynamicAnimator()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIFontDescriptor UIKit.UIFontDescriptor::CreateWithTraits(UIKit.UIFontDescriptorSymbolicTraits)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIGestureRecognizer UIKit.UINavigationController::get_InteractivePopGestureRecognizer()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIGestureRecognizer[] UIKit.UITouch::get_GestureRecognizers()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIActivity::get_Image()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIActivityItemSource::GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackButtonBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarButtonItemStyle,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIBarButtonItem::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::BackgroundImageForState(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::get_CurrentBackgroundImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::get_CurrentImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIButton::ImageForState(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UINavigationBar::GetBackgroundImage(UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UINavigationBar::GetBackgroundImage(UIKit.UIBarPosition,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::BackgroundImageForBarPosition(UIKit.UIBarPosition,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::GetImageForSearchBarIcon(UIKit.UISearchBarIcon,UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::GetScopeBarButtonBackgroundImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::GetScopeBarButtonDividerImage(UIKit.UIControlState,UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISearchBar::GetSearchFieldBackgroundImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISegmentedControl::GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISegmentedControl::ImageAt(System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentMaxTrackImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentMinTrackImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::get_CurrentThumbImage()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::MaxTrackImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::MinTrackImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UISlider::ThumbImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::BackgroundImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::GetDecrementImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::GetDividerImage(UIKit.UIControlState,UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIStepper::GetIncrementImage(UIKit.UIControlState)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIToolbar::GetBackgroundImage(UIKit.UIToolbarPosition,UIKit.UIBarMetrics)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImage UIKit.UIToolbar::GetShadowImage(UIKit.UIToolbarPosition)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIImageView UIKit.UIButton::get_ImageView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIInputViewController UIKit.UIResponder::get_InputAccessoryViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIInputViewController UIKit.UIResponder::get_InputViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIInterfaceOrientationMask UIKit.UIApplication::SupportedInterfaceOrientationsForWindow(UIKit.UIWindow)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'UIKit.UIInterfaceOrientationMask UIKit.UIApplicationDelegate::GetSupportedInterfaceOrientations(UIKit.UIApplication,UIKit.UIWindow)' is missing an [NullAllowed] on parameter #1
!missing-null-allowed! 'UIKit.UIKeyCommand[] UIKit.UIResponder::get_KeyCommands()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UILabel UIKit.UIButton::get_TitleLabel()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::get_BackItem()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::get_TopItem()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UINavigationItem UIKit.UINavigationBar::PopNavigationItem(System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPasteboard UIKit.UIPasteboard::FromName(System.String,System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPinchGestureRecognizer UIKit.UIScrollView::get_PinchGestureRecognizer()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPresentationController UIKit.UIViewControllerTransitioningDelegate::GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPrinter UIKit.UIPrinterPickerController::get_SelectedPrinter()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPrintFormatter[] UIKit.UIPrintPageRenderer::PrintFormattersForPage(System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPrintInfo UIKit.UIPrintInfo::FromDictionary(Foundation.NSDictionary)' is missing an [NullAllowed] on parameter #0
!missing-null-allowed! 'UIKit.UIPrintPageRenderer UIKit.UIPrintFormatter::get_PrintPageRenderer()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIPrintPaper UIKit.UIPrintInteractionController::get_PrintPaper()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIResponder UIKit.UIResponder::get_NextResponder()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIScreen UIKit.UIScreen::get_MirroredScreen()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIScreenMode UIKit.UIScreen::get_PreferredMode()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UITextField[] UIKit.UIAlertController::get_TextFields()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UITextInputMode UIKit.UIResponder::get_TextInputMode()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UITextPosition UIKit.UITextInputTokenizer::GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UITextRange UIKit.UITextInputTokenizer::GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIDocumentInteractionControllerDelegate::ViewForPreview(UIKit.UIDocumentInteractionController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIDynamicAnimator::get_ReferenceView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIGestureRecognizer::get_View()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIPickerView::ViewFor(System.IntPtr,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIPresentationController::get_ContainerView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIPresentationController::get_PresentedView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputAccessoryView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIResponder::get_InputView()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIScrollViewDelegate::ViewForZoomingInScrollView(UIKit.UIScrollView)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForFooter(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UITableViewDelegate::GetViewForHeader(UIKit.UITableView,System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UITouch::get_View()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIView::get_Superview()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIView::SnapshotView(System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIView::ViewWithTag(System.IntPtr)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIView UIKit.UIViewControllerContextTransitioning::GetViewFor(Foundation.NSString)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIActivity::get_ViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIAdaptivePresentationControllerDelegate::GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIApplicationDelegate::GetViewController(UIKit.UIApplication,System.String[],Foundation.NSCoder)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_TopViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::get_VisibleViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UINavigationController::PopViewController(System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPageViewControllerDataSource::GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrinterPickerControllerDelegate::GetParentViewController(UIKit.UIPrinterPickerController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIPrintInteractionControllerDelegate::GetViewController(UIKit.UIPrintInteractionController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISearchController::get_SearchResultsController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewController_UIViewController::SeparateSecondaryViewControllerForSplitViewController(UIKit.UIViewController,UIKit.UISplitViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UISplitViewControllerDelegate::SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIStoryboard::InstantiateInitialViewController(UIKit.UIStoryboardViewControllerCreator)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController UIKit.UIViewControllerContextTransitioning::GetViewControllerForKey(Foundation.NSString)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToRootViewController(System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UINavigationController::PopToViewController(UIKit.UIViewController,System.Boolean)' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIViewController[] UIKit.UIPageViewController::get_ViewControllers()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIWindow UIKit.UITouch::get_Window()' is missing an [NullAllowed] on return type
!missing-null-allowed! 'UIKit.UIWindow UIKit.UIView::get_Window()' is missing an [NullAllowed] on return type
!missing-pinvoke! UIFontWeightForImageSymbolWeight is not bound
!missing-pinvoke! UIImageSymbolWeightForFontWeight is not bound
!missing-protocol-conformance! NSToolbarItem should conform to UIPopoverPresentationControllerSourceItem (defined in 'UIPopoverPresentationControllerSourceItem' category)
!missing-protocol-conformance! UIDocumentInteractionController should conform to UIActionSheetDelegate
!missing-protocol-conformance! UIViewController should conform to UIStateRestoring (defined in 'UIStateRestoration' category)
!missing-protocol-member! NSCollectionLayoutVisibleItem::bounds not found
!missing-protocol-member! NSCollectionLayoutVisibleItem::center not found
!missing-protocol-member! NSCollectionLayoutVisibleItem::setCenter: not found
!missing-protocol-member! NSCollectionLayoutVisibleItem::setTransform: not found
!missing-protocol-member! NSCollectionLayoutVisibleItem::transform not found
!missing-requires-super! UIControl::contextMenuInteraction:willDisplayMenuForConfiguration:animator: is missing an [RequiresSuper] attribute
!missing-requires-super! UIControl::contextMenuInteraction:willEndForConfiguration:animator: is missing an [RequiresSuper] attribute
!missing-selector! +UITextInputContext::current not bound
!missing-selector! NSObject::accessibilityActivateBlock not bound
!missing-selector! NSObject::accessibilityActivationPointBlock not bound
!missing-selector! NSObject::accessibilityAttributedHintBlock not bound
!missing-selector! NSObject::accessibilityAttributedLabelBlock not bound
!missing-selector! NSObject::accessibilityAttributedUserInputLabelsBlock not bound
!missing-selector! NSObject::accessibilityAttributedValueBlock not bound
!missing-selector! NSObject::accessibilityContainerTypeBlock not bound
!missing-selector! NSObject::accessibilityCustomActionsBlock not bound
!missing-selector! NSObject::accessibilityCustomRotorsBlock not bound
!missing-selector! NSObject::accessibilityDecrementBlock not bound
!missing-selector! NSObject::accessibilityDirectTouchOptions not bound
!missing-selector! NSObject::accessibilityDragSourceDescriptors not bound
!missing-selector! NSObject::accessibilityDropPointDescriptors not bound
!missing-selector! NSObject::accessibilityElementsBlock not bound
!missing-selector! NSObject::accessibilityElementsHiddenBlock not bound
!missing-selector! NSObject::accessibilityFrameBlock not bound
!missing-selector! NSObject::accessibilityHeaderElementsBlock not bound
!missing-selector! NSObject::accessibilityHintBlock not bound
!missing-selector! NSObject::accessibilityIdentifierBlock not bound
!missing-selector! NSObject::accessibilityIncrementBlock not bound
!missing-selector! NSObject::accessibilityLabelBlock not bound
!missing-selector! NSObject::accessibilityLanguageBlock not bound
!missing-selector! NSObject::accessibilityMagicTapBlock not bound
!missing-selector! NSObject::accessibilityNavigationStyleBlock not bound
!missing-selector! NSObject::accessibilityPathBlock not bound
!missing-selector! NSObject::accessibilityPerformEscapeBlock not bound
!missing-selector! NSObject::accessibilityRespondsToUserInteractionBlock not bound
!missing-selector! NSObject::accessibilityShouldGroupAccessibilityChildrenBlock not bound
!missing-selector! NSObject::accessibilityTextualContextBlock not bound
!missing-selector! NSObject::accessibilityTraitsBlock not bound
!missing-selector! NSObject::accessibilityUserInputLabelsBlock not bound
!missing-selector! NSObject::accessibilityValueBlock not bound
!missing-selector! NSObject::accessibilityViewIsModalBlock not bound
!missing-selector! NSObject::accessibilityZoomInAtPoint: not bound
!missing-selector! NSObject::accessibilityZoomOutAtPoint: not bound
!missing-selector! NSObject::automationElements not bound
!missing-selector! NSObject::automationElementsBlock not bound
!missing-selector! NSObject::isAccessibilityElementBlock not bound
!missing-selector! NSObject::setAccessibilityActivateBlock: not bound
!missing-selector! NSObject::setAccessibilityActivationPointBlock: not bound
!missing-selector! NSObject::setAccessibilityAttributedHintBlock: not bound
!missing-selector! NSObject::setAccessibilityAttributedLabelBlock: not bound
!missing-selector! NSObject::setAccessibilityAttributedUserInputLabelsBlock: not bound
!missing-selector! NSObject::setAccessibilityAttributedValueBlock: not bound
!missing-selector! NSObject::setAccessibilityContainerTypeBlock: not bound
!missing-selector! NSObject::setAccessibilityCustomActionsBlock: not bound
!missing-selector! NSObject::setAccessibilityCustomRotorsBlock: not bound
!missing-selector! NSObject::setAccessibilityDecrementBlock: not bound
!missing-selector! NSObject::setAccessibilityDirectTouchOptions: not bound
!missing-selector! NSObject::setAccessibilityDragSourceDescriptors: not bound
!missing-selector! NSObject::setAccessibilityDropPointDescriptors: not bound
!missing-selector! NSObject::setAccessibilityElementsBlock: not bound
!missing-selector! NSObject::setAccessibilityElementsHiddenBlock: not bound
!missing-selector! NSObject::setAccessibilityFrameBlock: not bound
!missing-selector! NSObject::setAccessibilityHeaderElementsBlock: not bound
!missing-selector! NSObject::setAccessibilityHintBlock: not bound
!missing-selector! NSObject::setAccessibilityIdentifierBlock: not bound
!missing-selector! NSObject::setAccessibilityIncrementBlock: not bound
!missing-selector! NSObject::setAccessibilityLabelBlock: not bound
!missing-selector! NSObject::setAccessibilityLanguageBlock: not bound
!missing-selector! NSObject::setAccessibilityMagicTapBlock: not bound
!missing-selector! NSObject::setAccessibilityNavigationStyleBlock: not bound
!missing-selector! NSObject::setAccessibilityPathBlock: not bound
!missing-selector! NSObject::setAccessibilityPerformEscapeBlock: not bound
!missing-selector! NSObject::setAccessibilityRespondsToUserInteractionBlock: not bound
!missing-selector! NSObject::setAccessibilityShouldGroupAccessibilityChildrenBlock: not bound
!missing-selector! NSObject::setAccessibilityTextualContextBlock: not bound
!missing-selector! NSObject::setAccessibilityTraitsBlock: not bound
!missing-selector! NSObject::setAccessibilityUserInputLabelsBlock: not bound
!missing-selector! NSObject::setAccessibilityValueBlock: not bound
!missing-selector! NSObject::setAccessibilityViewIsModalBlock: not bound
!missing-selector! NSObject::setAutomationElements: not bound
!missing-selector! NSObject::setAutomationElementsBlock: not bound
!missing-selector! NSObject::setIsAccessibilityElementBlock: not bound
!missing-selector! NSUIViewToolbarItem::initWithItemIdentifier:uiView: not bound
!missing-selector! NSUIViewToolbarItem::setUIView: not bound
!missing-selector! NSUIViewToolbarItem::uiView not bound
!missing-selector! UIBarAppearance::copy not bound
!missing-selector! UIBarButtonItemAppearance::copy not bound
!missing-selector! UIGestureRecognizer::initWithCoder: not bound
!missing-selector! UIHoverGestureRecognizer::azimuthAngleInView: not bound
!missing-selector! UIHoverGestureRecognizer::azimuthUnitVectorInView: not bound
!missing-selector! UIKeyCommand::action not bound
!missing-selector! UIPrintPaper::printRect not bound
!missing-selector! UIRefreshControl::setTintColor: not bound
!missing-selector! UIRefreshControl::tintColor not bound
!missing-selector! UITabBarItemAppearance::copy not bound
!missing-selector! UITextInputContext::isDictationInputExpected not bound
!missing-selector! UITextInputContext::isHardwareKeyboardInputExpected not bound
!missing-selector! UITextInputContext::isPencilInputExpected not bound
!missing-selector! UITextInputContext::setDictationInputExpected: not bound
!missing-selector! UITextInputContext::setHardwareKeyboardInputExpected: not bound
!missing-selector! UITextInputContext::setPencilInputExpected: not bound
!missing-selector! UIToolbar::setTintColor: not bound
!missing-selector! UIToolbar::tintColor not bound
!missing-type! NSUIViewToolbarItem not bound
!missing-type! UITextInputContext not bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-enum! UIActivityCollaborationMode not bound
!missing-enum! UIActivitySectionTypes not bound
!missing-enum! UICollectionLayoutListContentHuggingElements not bound
!missing-enum! UIColorProminence not bound
!missing-enum! UIListEnvironment not bound
!missing-enum! UITabBarControllerMode not bound
!missing-enum! UITabBarControllerSidebarLayout not bound
!missing-enum! UITabGroupSidebarAppearance not bound
!missing-enum! UITableViewContentHuggingElements not bound
!missing-enum! UITabPlacement not bound
!missing-enum! UITextMathExpressionCompletionType not bound
!missing-enum! UIWritingToolsBehavior not bound
!missing-enum-value! UIPasteControlDisplayMode native value UIPasteControlDisplayModeArrowAndLabel = 3 not bound
!missing-field! NSAdaptiveImageGlyphAttributeName not bound
!missing-field! NSTextHighlightColorSchemeAttributeName not bound
!missing-field! NSTextHighlightColorSchemeBlue not bound
!missing-field! NSTextHighlightColorSchemeDefault not bound
!missing-field! NSTextHighlightColorSchemeMint not bound
!missing-field! NSTextHighlightColorSchemeOrange not bound
!missing-field! NSTextHighlightColorSchemePink not bound
!missing-field! NSTextHighlightColorSchemePurple not bound
!missing-field! NSTextHighlightStyleAttributeName not bound
!missing-field! NSTextHighlightStyleDefault not bound
!missing-field! NSTextKit1ListMarkerFormatDocumentOption not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-field! UIActivityItemsConfigurationMetadataKeyCollaborationModeRestrictions not bound
!missing-field! UIActivityItemsConfigurationMetadataKeyShareRecipients not bound
!missing-field! UIDocumentCreationIntentDefault not bound
!missing-protocol! UICalendarSelectionWeekOfYearDelegate not bound
!missing-protocol! UITabBarControllerSidebarDelegate not bound
!missing-protocol-member! UIActivityItemSource::activityViewControllerShareRecipients: not found
!missing-protocol-member! UIMutableTraits::listEnvironment not found
!missing-protocol-member! UIMutableTraits::setListEnvironment: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:didSelectTab:previousTab: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:displayOrderDidChangeForGroup: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:shouldSelectTab: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:tab:acceptItemsFromDropSession: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:tab:operationForAcceptingItemsFromDropSession: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:visibilityDidChangeForTabs: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarControllerDidEndEditing: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarControllerWillBeginEditing: not found
!missing-protocol-member! UITextInput::insertAdaptiveImageGlyph:replacementRange: not found
!missing-protocol-member! UITextInput::insertAttributedText: not found
!missing-protocol-member! UITextInput::isEditable not found
!missing-protocol-member! UITextInput::replaceRange:withAttributedText: not found
!missing-protocol-member! UITextInput::setSupportsAdaptiveImageGlyph: not found
!missing-protocol-member! UITextInput::supportsAdaptiveImageGlyph not found
!missing-protocol-member! UITextInputTraits::mathExpressionCompletionType not found
!missing-protocol-member! UITextInputTraits::setMathExpressionCompletionType: not found
!missing-protocol-member! UITextInputTraits::setWritingToolsBehavior: not found
!missing-protocol-member! UITextInputTraits::writingToolsBehavior not found
!missing-protocol-member! UITextViewDelegate::textView:writingToolsIgnoredRangesInEnclosingRange: not found
!missing-protocol-member! UITextViewDelegate::textViewWritingToolsDidEnd: not found
!missing-protocol-member! UITextViewDelegate::textViewWritingToolsWillBegin: not found
!missing-selector! +NSAdaptiveImageGlyph::contentType not bound
!missing-selector! +NSAttributedString::attributedStringWithAdaptiveImageGlyph:attributes: not bound
!missing-selector! +NSAttributedString::attributedStringWithAttachment:attributes: not bound
!missing-selector! +UIBackgroundConfiguration::listCellConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listFooterConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listHeaderConfiguration not bound
!missing-selector! +UIDocumentViewControllerLaunchOptions::createDocumentActionWithIntent: not bound
!missing-selector! +UIListContentConfiguration::footerConfiguration not bound
!missing-selector! +UIListContentConfiguration::headerConfiguration not bound
!missing-selector! +UITabSidebarItem::itemFromRequest: not bound
!missing-selector! +UITabSidebarScrollTarget::targetForFooter not bound
!missing-selector! +UITabSidebarScrollTarget::targetForHeader not bound
!missing-selector! +UITabSidebarScrollTarget::targetForTab: not bound
!missing-selector! +UITraitCollection::traitCollectionWithListEnvironment: not bound
!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound
!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound
!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound
!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound
!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound
!missing-selector! NSAdaptiveImageGlyph::contentDescription not bound
!missing-selector! NSAdaptiveImageGlyph::contentIdentifier not bound
!missing-selector! NSAdaptiveImageGlyph::imageContent not bound
!missing-selector! NSAdaptiveImageGlyph::initWithCoder: not bound
!missing-selector! NSAdaptiveImageGlyph::initWithImageContent: not bound
!missing-selector! NSAttributedString::prefersRTFDInRange: not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElement not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElementBlock not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElement not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElementBlock not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElementBlock: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElementBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertDismissButtonTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertMessage not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertRecoverySuggestionButtonLaunchURL not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertRecoverySuggestionButtonTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::description not bound
!missing-selector! UIActivityCollaborationModeRestriction::disabledMode not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle:alertRecoverySuggestionButtonTitle:alertRecoverySuggestionButtonLaunchURL: not bound
!missing-selector! UIActivityViewController::excludedActivitySectionTypes not bound
!missing-selector! UIActivityViewController::setExcludedActivitySectionTypes: not bound
!missing-selector! UIBackgroundConfiguration::shadowProperties not bound
!missing-selector! UICalendarSelectionWeekOfYear::delegate not bound
!missing-selector! UICalendarSelectionWeekOfYear::initWithDelegate: not bound
!missing-selector! UICalendarSelectionWeekOfYear::selectedWeekOfYear not bound
!missing-selector! UICalendarSelectionWeekOfYear::setSelectedWeekOfYear: not bound
!missing-selector! UICalendarSelectionWeekOfYear::setSelectedWeekOfYear:animated: not bound
!missing-selector! UICollectionLayoutListConfiguration::contentHuggingElements not bound
!missing-selector! UICollectionLayoutListConfiguration::setContentHuggingElements: not bound
!missing-selector! UICollectionView::indexPathForSupplementaryView: not bound
!missing-selector! UIColor::colorWithProminence: not bound
!missing-selector! UIColor::prominence not bound
!missing-selector! UIDocumentBrowserViewController::activeDocumentCreationIntent not bound
!missing-selector! UIDocumentViewController::launchOptions not bound
!missing-selector! UIDocumentViewController::setLaunchOptions: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::background not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::backgroundAccessoryView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::browserViewController not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::documentTargetView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::foregroundAccessoryView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::primaryAction not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::secondaryAction not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBackground: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBackgroundAccessoryView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBrowserViewController: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setDocumentTargetView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setForegroundAccessoryView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setPrimaryAction: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setSecondaryAction: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setTitle: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::title not bound
!missing-selector! UIListContentConfiguration::alpha not bound
!missing-selector! UIListContentConfiguration::setAlpha: not bound
!missing-selector! UIListContentImageProperties::resolvedStrokeColorForTintColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColorTransformer: not bound
!missing-selector! UIListContentImageProperties::setStrokeWidth: not bound
!missing-selector! UIListContentImageProperties::strokeColor not bound
!missing-selector! UIListContentImageProperties::strokeColorTransformer not bound
!missing-selector! UIListContentImageProperties::strokeWidth not bound
!missing-selector! UIPasteControlConfiguration::imagePlacement not bound
!missing-selector! UIPasteControlConfiguration::setImagePlacement: not bound
!missing-selector! UISearchTab::initWithViewControllerProvider: not bound
!missing-selector! UIShadowProperties::color not bound
!missing-selector! UIShadowProperties::offset not bound
!missing-selector! UIShadowProperties::opacity not bound
!missing-selector! UIShadowProperties::path not bound
!missing-selector! UIShadowProperties::radius not bound
!missing-selector! UIShadowProperties::setColor: not bound
!missing-selector! UIShadowProperties::setOffset: not bound
!missing-selector! UIShadowProperties::setOpacity: not bound
!missing-selector! UIShadowProperties::setPath: not bound
!missing-selector! UIShadowProperties::setRadius: not bound
!missing-selector! UITab::allowsHiding not bound
!missing-selector! UITab::badgeValue not bound
!missing-selector! UITab::identifier not bound
!missing-selector! UITab::image not bound
!missing-selector! UITab::initWithTitle:image:identifier:viewControllerProvider: not bound
!missing-selector! UITab::isHidden not bound
!missing-selector! UITab::isHiddenByDefault not bound
!missing-selector! UITab::parent not bound
!missing-selector! UITab::preferredPlacement not bound
!missing-selector! UITab::setAllowsHiding: not bound
!missing-selector! UITab::setBadgeValue: not bound
!missing-selector! UITab::setHidden: not bound
!missing-selector! UITab::setHiddenByDefault: not bound
!missing-selector! UITab::setImage: not bound
!missing-selector! UITab::setPreferredPlacement: not bound
!missing-selector! UITab::setSubtitle: not bound
!missing-selector! UITab::setTitle: not bound
!missing-selector! UITab::setUserInfo: not bound
!missing-selector! UITab::subtitle not bound
!missing-selector! UITab::tabBarController not bound
!missing-selector! UITab::title not bound
!missing-selector! UITab::userInfo not bound
!missing-selector! UITab::viewController not bound
!missing-selector! UITabBarController::compactTabIdentifiers not bound
!missing-selector! UITabBarController::customizationIdentifier not bound
!missing-selector! UITabBarController::initWithTabs: not bound
!missing-selector! UITabBarController::isTabBarHidden not bound
!missing-selector! UITabBarController::mode not bound
!missing-selector! UITabBarController::selectedTab not bound
!missing-selector! UITabBarController::setCompactTabIdentifiers: not bound
!missing-selector! UITabBarController::setCustomizationIdentifier: not bound
!missing-selector! UITabBarController::setMode: not bound
!missing-selector! UITabBarController::setSelectedTab: not bound
!missing-selector! UITabBarController::setTabBarHidden: not bound
!missing-selector! UITabBarController::setTabBarHidden:animated: not bound
!missing-selector! UITabBarController::setTabs: not bound
!missing-selector! UITabBarController::setTabs:animated: not bound
!missing-selector! UITabBarController::sidebar not bound
!missing-selector! UITabBarController::tabForIdentifier: not bound
!missing-selector! UITabBarController::tabs not bound
!missing-selector! UITabBarControllerSidebar::bottomBarView not bound
!missing-selector! UITabBarControllerSidebar::delegate not bound
!missing-selector! UITabBarControllerSidebar::footerContentConfiguration not bound
!missing-selector! UITabBarControllerSidebar::headerContentConfiguration not bound
!missing-selector! UITabBarControllerSidebar::isHidden not bound
!missing-selector! UITabBarControllerSidebar::preferredLayout not bound
!missing-selector! UITabBarControllerSidebar::reconfigureItemForTab: not bound
!missing-selector! UITabBarControllerSidebar::scrollToTarget:animated: not bound
!missing-selector! UITabBarControllerSidebar::setBottomBarView: not bound
!missing-selector! UITabBarControllerSidebar::setDelegate: not bound
!missing-selector! UITabBarControllerSidebar::setFooterContentConfiguration: not bound
!missing-selector! UITabBarControllerSidebar::setHeaderContentConfiguration: not bound
!missing-selector! UITabBarControllerSidebar::setHidden: not bound
!missing-selector! UITabBarControllerSidebar::setPreferredLayout: not bound
!missing-selector! UITabGroup::allowsReordering not bound
!missing-selector! UITabGroup::children not bound
!missing-selector! UITabGroup::defaultChildIdentifier not bound
!missing-selector! UITabGroup::displayOrder not bound
!missing-selector! UITabGroup::displayOrderIdentifiers not bound
!missing-selector! UITabGroup::initWithTitle:image:identifier:children:viewControllerProvider: not bound
!missing-selector! UITabGroup::managingNavigationController not bound
!missing-selector! UITabGroup::selectedChild not bound
!missing-selector! UITabGroup::setAllowsReordering: not bound
!missing-selector! UITabGroup::setChildren: not bound
!missing-selector! UITabGroup::setDefaultChildIdentifier: not bound
!missing-selector! UITabGroup::setDisplayOrderIdentifiers: not bound
!missing-selector! UITabGroup::setManagingNavigationController: not bound
!missing-selector! UITabGroup::setSelectedChild: not bound
!missing-selector! UITabGroup::setSidebarActions: not bound
!missing-selector! UITabGroup::setSidebarAppearance: not bound
!missing-selector! UITabGroup::sidebarActions not bound
!missing-selector! UITabGroup::sidebarAppearance not bound
!missing-selector! UITabGroup::tabForIdentifier: not bound
!missing-selector! UITableView::contentHuggingElements not bound
!missing-selector! UITableView::setContentHuggingElements: not bound
!missing-selector! UITabSidebarItem::accessories not bound
!missing-selector! UITabSidebarItem::action not bound
!missing-selector! UITabSidebarItem::backgroundConfiguration not bound
!missing-selector! UITabSidebarItem::configurationState not bound
!missing-selector! UITabSidebarItem::contentConfiguration not bound
!missing-selector! UITabSidebarItem::defaultBackgroundConfiguration not bound
!missing-selector! UITabSidebarItem::defaultContentConfiguration not bound
!missing-selector! UITabSidebarItem::setAccessories: not bound
!missing-selector! UITabSidebarItem::setBackgroundConfiguration: not bound
!missing-selector! UITabSidebarItem::setContentConfiguration: not bound
!missing-selector! UITabSidebarItem::tab not bound
!missing-selector! UITabSidebarItemRequest::action not bound
!missing-selector! UITabSidebarItemRequest::tab not bound
!missing-selector! UITextView::drawTextHighlightBackgroundForTextRange:origin: not bound
!missing-selector! UITextView::isWritingToolsActive not bound
!missing-selector! UITextView::setTextHighlightAttributes: not bound
!missing-selector! UITextView::setWritingToolsBehavior: not bound
!missing-selector! UITextView::textHighlightAttributes not bound
!missing-selector! UITextView::writingToolsBehavior not bound
!missing-selector! UITraitCollection::listEnvironment not bound
!missing-selector! UIViewController::preferredTransition not bound
!missing-selector! UIViewController::setPreferredTransition: not bound
!missing-selector! UIViewController::tab not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound
!missing-selector! UIZoomTransitionInteractionContext::location not bound
!missing-selector! UIZoomTransitionInteractionContext::velocity not bound
!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound
!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound
!missing-selector! UIZoomTransitionOptions::dimmingColor not bound
!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound
!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound
!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound
!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! UIActivityCollaborationModeRestriction not bound
!missing-type! UICalendarSelectionWeekOfYear not bound
!missing-type! UIDocumentViewControllerLaunchOptions not bound
!missing-type! UISearchTab not bound
!missing-type! UIShadowProperties not bound
!missing-type! UITab not bound
!missing-type! UITabBarControllerSidebar not bound
!missing-type! UITabGroup not bound
!missing-type! UITabSidebarItem not bound
!missing-type! UITabSidebarItemRequest not bound
!missing-type! UITabSidebarScrollTarget not bound
!missing-type! UITraitListEnvironment not bound
!missing-type! UIViewControllerTransition not bound
!missing-type! UIZoomTransitionAlignmentRectContext not bound
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound
!missing-enum! UIFocusItemDeferralMode not bound
!missing-enum! UIWritingToolsResultOptions not bound
!missing-protocol! UITabBarControllerSidebarAnimating not bound
!missing-protocol-member! UIFocusItem::focusItemDeferralMode not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:displayedViewControllersForTab:proposedViewControllers: not found
!missing-protocol-member! UITextInput::attributedTextInRange: not found
!missing-protocol-member! UITextInput::didDismissWritingTools not found
!missing-protocol-member! UITextInput::willPresentWritingTools not found
!missing-protocol-member! UITextInputTraits::allowedWritingToolsResultOptions not found
!missing-protocol-member! UITextInputTraits::setAllowedWritingToolsResultOptions: not found
!missing-selector! UITab::managingTabGroup not bound
!missing-selector! UITextView::allowedWritingToolsResultOptions not bound
!missing-selector! UITextView::setAllowedWritingToolsResultOptions: not bound
!missing-field! UISceneSystemProtectionDidChangeNotification not bound
!missing-selector! UIScene::systemProtectionManager not bound
!missing-selector! UISceneSystemProtectionManager::isUserAuthenticationEnabled not bound
!missing-type! UISceneSystemProtectionManager not bound

Просмотреть файл

@ -74,6 +74,8 @@
!missing-selector! NSObject::accessibilityContainerType not bound
!missing-selector! NSObject::accessibilityCustomActions not bound
!missing-selector! NSObject::accessibilityElementsHidden not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityFrame not bound
!missing-selector! NSObject::accessibilityHint not bound
!missing-selector! NSObject::accessibilityLabel not bound
@ -102,6 +104,8 @@
!missing-selector! NSObject::setAccessibilityContainerType: not bound
!missing-selector! NSObject::setAccessibilityCustomActions: not bound
!missing-selector! NSObject::setAccessibilityElementsHidden: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! NSObject::setAccessibilityFrame: not bound
!missing-selector! NSObject::setAccessibilityHint: not bound
!missing-selector! NSObject::setAccessibilityLabel: not bound

Просмотреть файл

@ -476,3 +476,6 @@
!incorrect-protocol-member! UIMenuLeaf::setSelectedImage: is REQUIRED and should be abstract
!missing-protocol! UIItemProviderReadingAugmentationDesignating not bound
# Bound on the NSObjectProtocol protocol
!missing-selector! UIActivityCollaborationModeRestriction::description not bound

Просмотреть файл

@ -1,470 +0,0 @@
!deprecated-attribute-missing! UIFontPickerViewControllerConfiguration::filteredLanguagesPredicate missing a [Deprecated] attribute
!deprecated-attribute-missing! UIFontPickerViewControllerConfiguration::setFilteredLanguagesPredicate: missing a [Deprecated] attribute
!missing-enum! UIActivityCollaborationMode not bound
!missing-enum! UIActivitySectionTypes not bound
!missing-enum! UICollectionLayoutListContentHuggingElements not bound
!missing-enum! UIColorProminence not bound
!missing-enum! UIListEnvironment not bound
!missing-enum! UITabBarControllerMode not bound
!missing-enum! UITabBarControllerSidebarLayout not bound
!missing-enum! UITabGroupSidebarAppearance not bound
!missing-enum! UITableViewContentHuggingElements not bound
!missing-enum! UITabPlacement not bound
!missing-enum! UITextMathExpressionCompletionType not bound
!missing-enum! UIWritingToolsBehavior not bound
!missing-enum-value! UIPasteControlDisplayMode native value UIPasteControlDisplayModeArrowAndLabel = 3 not bound
!missing-field! NSAdaptiveImageGlyphAttributeName not bound
!missing-field! NSTextHighlightColorSchemeAttributeName not bound
!missing-field! NSTextHighlightColorSchemeBlue not bound
!missing-field! NSTextHighlightColorSchemeDefault not bound
!missing-field! NSTextHighlightColorSchemeMint not bound
!missing-field! NSTextHighlightColorSchemeOrange not bound
!missing-field! NSTextHighlightColorSchemePink not bound
!missing-field! NSTextHighlightColorSchemePurple not bound
!missing-field! NSTextHighlightStyleAttributeName not bound
!missing-field! NSTextHighlightStyleDefault not bound
!missing-field! UIActivityItemsConfigurationMetadataKeyCollaborationModeRestrictions not bound
!missing-field! UIActivityItemsConfigurationMetadataKeyShareRecipients not bound
!missing-field! UIDocumentCreationIntentDefault not bound
!missing-protocol! UICalendarSelectionWeekOfYearDelegate not bound
!missing-protocol! UITabBarControllerSidebarDelegate not bound
!missing-protocol-member! UIActivityItemSource::activityViewControllerShareRecipients: not found
!missing-protocol-member! UIMutableTraits::listEnvironment not found
!missing-protocol-member! UIMutableTraits::setListEnvironment: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:didSelectTab:previousTab: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:displayOrderDidChangeForGroup: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:shouldSelectTab: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:tab:acceptItemsFromDropSession: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:tab:operationForAcceptingItemsFromDropSession: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:visibilityDidChangeForTabs: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarControllerDidEndEditing: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarControllerWillBeginEditing: not found
!missing-protocol-member! UITextInput::insertAdaptiveImageGlyph:replacementRange: not found
!missing-protocol-member! UITextInput::isEditable not found
!missing-protocol-member! UITextInput::setSupportsAdaptiveImageGlyph: not found
!missing-protocol-member! UITextInput::supportsAdaptiveImageGlyph not found
!missing-protocol-member! UITextInputTraits::mathExpressionCompletionType not found
!missing-protocol-member! UITextInputTraits::setMathExpressionCompletionType: not found
!missing-protocol-member! UITextInputTraits::setWritingToolsBehavior: not found
!missing-protocol-member! UITextInputTraits::writingToolsBehavior not found
!missing-protocol-member! UITextViewDelegate::textView:writingToolsIgnoredRangesInEnclosingRange: not found
!missing-protocol-member! UITextViewDelegate::textViewWritingToolsDidEnd: not found
!missing-protocol-member! UITextViewDelegate::textViewWritingToolsWillBegin: not found
!missing-selector! +NSAdaptiveImageGlyph::contentType not bound
!missing-selector! +NSAttributedString::attributedStringWithAdaptiveImageGlyph:attributes: not bound
!missing-selector! +NSAttributedString::attributedStringWithAttachment:attributes: not bound
!missing-selector! +UIBackgroundConfiguration::listCellConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listFooterConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listHeaderConfiguration not bound
!missing-selector! +UIDocumentViewControllerLaunchOptions::createDocumentActionWithIntent: not bound
!missing-selector! +UIListContentConfiguration::footerConfiguration not bound
!missing-selector! +UIListContentConfiguration::headerConfiguration not bound
!missing-selector! +UITabSidebarItem::itemFromRequest: not bound
!missing-selector! +UITabSidebarScrollTarget::targetForFooter not bound
!missing-selector! +UITabSidebarScrollTarget::targetForHeader not bound
!missing-selector! +UITabSidebarScrollTarget::targetForTab: not bound
!missing-selector! +UITraitCollection::traitCollectionWithListEnvironment: not bound
!missing-selector! +UIUpdateActionPhase::afterCADisplayLinkDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::afterEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterLowLatencyCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::afterLowLatencyEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterUpdateComplete not bound
!missing-selector! +UIUpdateActionPhase::afterUpdateScheduled not bound
!missing-selector! +UIUpdateActionPhase::beforeCADisplayLinkDispatch not bound
!missing-selector! +UIUpdateActionPhase::beforeCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::beforeEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::beforeLowLatencyCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::beforeLowLatencyEventDispatch not bound
!missing-selector! +UIUpdateInfo::currentUpdateInfoForView: not bound
!missing-selector! +UIUpdateInfo::currentUpdateInfoForWindowScene: not bound
!missing-selector! +UIUpdateLink::updateLinkForView: not bound
!missing-selector! +UIUpdateLink::updateLinkForView:actionHandler: not bound
!missing-selector! +UIUpdateLink::updateLinkForView:actionTarget:selector: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene:actionHandler: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene:actionTarget:selector: not bound
!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound
!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound
!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound
!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound
!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound
!missing-selector! NSAdaptiveImageGlyph::contentDescription not bound
!missing-selector! NSAdaptiveImageGlyph::contentIdentifier not bound
!missing-selector! NSAdaptiveImageGlyph::imageContent not bound
!missing-selector! NSAdaptiveImageGlyph::initWithCoder: not bound
!missing-selector! NSAdaptiveImageGlyph::initWithImageContent: not bound
!missing-selector! NSAttributedString::prefersRTFDInRange: not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertDismissButtonTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertMessage not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertRecoverySuggestionButtonLaunchURL not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertRecoverySuggestionButtonTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::description not bound
!missing-selector! UIActivityCollaborationModeRestriction::disabledMode not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle:alertRecoverySuggestionButtonTitle:alertRecoverySuggestionButtonLaunchURL: not bound
!missing-selector! UIActivityViewController::excludedActivitySectionTypes not bound
!missing-selector! UIActivityViewController::setExcludedActivitySectionTypes: not bound
!missing-selector! UICalendarSelectionWeekOfYear::delegate not bound
!missing-selector! UICalendarSelectionWeekOfYear::initWithDelegate: not bound
!missing-selector! UICalendarSelectionWeekOfYear::selectedWeekOfYear not bound
!missing-selector! UICalendarSelectionWeekOfYear::setSelectedWeekOfYear: not bound
!missing-selector! UICalendarSelectionWeekOfYear::setSelectedWeekOfYear:animated: not bound
!missing-selector! UICollectionLayoutListConfiguration::contentHuggingElements not bound
!missing-selector! UICollectionLayoutListConfiguration::setContentHuggingElements: not bound
!missing-selector! UICollectionView::indexPathForSupplementaryView: not bound
!missing-selector! UIColor::colorWithProminence: not bound
!missing-selector! UIColor::prominence not bound
!missing-selector! UIDocumentBrowserViewController::activeDocumentCreationIntent not bound
!missing-selector! UIDocumentViewController::launchOptions not bound
!missing-selector! UIDocumentViewController::setLaunchOptions: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::background not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::backgroundAccessoryView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::browserViewController not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::documentTargetView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::foregroundAccessoryView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::primaryAction not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::secondaryAction not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBackground: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBackgroundAccessoryView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBrowserViewController: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setDocumentTargetView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setForegroundAccessoryView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setPrimaryAction: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setSecondaryAction: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setTitle: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::title not bound
!missing-selector! UIPasteControlConfiguration::imagePlacement not bound
!missing-selector! UIPasteControlConfiguration::setImagePlacement: not bound
!missing-selector! UISearchTab::initWithViewControllerProvider: not bound
!missing-selector! UITab::allowsHiding not bound
!missing-selector! UITab::badgeValue not bound
!missing-selector! UITab::identifier not bound
!missing-selector! UITab::image not bound
!missing-selector! UITab::initWithTitle:image:identifier:viewControllerProvider: not bound
!missing-selector! UITab::isHidden not bound
!missing-selector! UITab::isHiddenByDefault not bound
!missing-selector! UITab::parent not bound
!missing-selector! UITab::preferredPlacement not bound
!missing-selector! UITab::setAllowsHiding: not bound
!missing-selector! UITab::setBadgeValue: not bound
!missing-selector! UITab::setHidden: not bound
!missing-selector! UITab::setHiddenByDefault: not bound
!missing-selector! UITab::setImage: not bound
!missing-selector! UITab::setPreferredPlacement: not bound
!missing-selector! UITab::setSubtitle: not bound
!missing-selector! UITab::setTitle: not bound
!missing-selector! UITab::setUserInfo: not bound
!missing-selector! UITab::subtitle not bound
!missing-selector! UITab::tabBarController not bound
!missing-selector! UITab::title not bound
!missing-selector! UITab::userInfo not bound
!missing-selector! UITab::viewController not bound
!missing-selector! UITabBarController::compactTabIdentifiers not bound
!missing-selector! UITabBarController::customizationIdentifier not bound
!missing-selector! UITabBarController::initWithTabs: not bound
!missing-selector! UITabBarController::isTabBarHidden not bound
!missing-selector! UITabBarController::mode not bound
!missing-selector! UITabBarController::selectedTab not bound
!missing-selector! UITabBarController::setCompactTabIdentifiers: not bound
!missing-selector! UITabBarController::setCustomizationIdentifier: not bound
!missing-selector! UITabBarController::setMode: not bound
!missing-selector! UITabBarController::setSelectedTab: not bound
!missing-selector! UITabBarController::setTabBarHidden: not bound
!missing-selector! UITabBarController::setTabBarHidden:animated: not bound
!missing-selector! UITabBarController::setTabs: not bound
!missing-selector! UITabBarController::setTabs:animated: not bound
!missing-selector! UITabBarController::sidebar not bound
!missing-selector! UITabBarController::tabForIdentifier: not bound
!missing-selector! UITabBarController::tabs not bound
!missing-selector! UITabBarControllerSidebar::bottomBarView not bound
!missing-selector! UITabBarControllerSidebar::delegate not bound
!missing-selector! UITabBarControllerSidebar::footerContentConfiguration not bound
!missing-selector! UITabBarControllerSidebar::headerContentConfiguration not bound
!missing-selector! UITabBarControllerSidebar::isHidden not bound
!missing-selector! UITabBarControllerSidebar::preferredLayout not bound
!missing-selector! UITabBarControllerSidebar::reconfigureItemForTab: not bound
!missing-selector! UITabBarControllerSidebar::scrollToTarget:animated: not bound
!missing-selector! UITabBarControllerSidebar::setBottomBarView: not bound
!missing-selector! UITabBarControllerSidebar::setDelegate: not bound
!missing-selector! UITabBarControllerSidebar::setFooterContentConfiguration: not bound
!missing-selector! UITabBarControllerSidebar::setHeaderContentConfiguration: not bound
!missing-selector! UITabBarControllerSidebar::setHidden: not bound
!missing-selector! UITabBarControllerSidebar::setPreferredLayout: not bound
!missing-selector! UITabGroup::allowsReordering not bound
!missing-selector! UITabGroup::children not bound
!missing-selector! UITabGroup::defaultChildIdentifier not bound
!missing-selector! UITabGroup::displayOrder not bound
!missing-selector! UITabGroup::displayOrderIdentifiers not bound
!missing-selector! UITabGroup::initWithTitle:image:identifier:children:viewControllerProvider: not bound
!missing-selector! UITabGroup::managingNavigationController not bound
!missing-selector! UITabGroup::selectedChild not bound
!missing-selector! UITabGroup::setAllowsReordering: not bound
!missing-selector! UITabGroup::setChildren: not bound
!missing-selector! UITabGroup::setDefaultChildIdentifier: not bound
!missing-selector! UITabGroup::setDisplayOrderIdentifiers: not bound
!missing-selector! UITabGroup::setManagingNavigationController: not bound
!missing-selector! UITabGroup::setSelectedChild: not bound
!missing-selector! UITabGroup::setSidebarActions: not bound
!missing-selector! UITabGroup::setSidebarAppearance: not bound
!missing-selector! UITabGroup::sidebarActions not bound
!missing-selector! UITabGroup::sidebarAppearance not bound
!missing-selector! UITabGroup::tabForIdentifier: not bound
!missing-selector! UITableView::contentHuggingElements not bound
!missing-selector! UITableView::setContentHuggingElements: not bound
!missing-selector! UITabSidebarItem::accessories not bound
!missing-selector! UITabSidebarItem::action not bound
!missing-selector! UITabSidebarItem::backgroundConfiguration not bound
!missing-selector! UITabSidebarItem::configurationState not bound
!missing-selector! UITabSidebarItem::contentConfiguration not bound
!missing-selector! UITabSidebarItem::defaultBackgroundConfiguration not bound
!missing-selector! UITabSidebarItem::defaultContentConfiguration not bound
!missing-selector! UITabSidebarItem::setAccessories: not bound
!missing-selector! UITabSidebarItem::setBackgroundConfiguration: not bound
!missing-selector! UITabSidebarItem::setContentConfiguration: not bound
!missing-selector! UITabSidebarItem::tab not bound
!missing-selector! UITabSidebarItemRequest::action not bound
!missing-selector! UITabSidebarItemRequest::tab not bound
!missing-selector! UITextView::drawTextHighlightBackgroundForTextRange:origin: not bound
!missing-selector! UITextView::isWritingToolsActive not bound
!missing-selector! UITextView::setTextHighlightAttributes: not bound
!missing-selector! UITextView::textHighlightAttributes not bound
!missing-selector! UITraitCollection::listEnvironment not bound
!missing-selector! UIUpdateInfo::completionDeadlineTime not bound
!missing-selector! UIUpdateInfo::estimatedPresentationTime not bound
!missing-selector! UIUpdateInfo::isImmediatePresentationExpected not bound
!missing-selector! UIUpdateInfo::isLowLatencyEventDispatchConfirmed not bound
!missing-selector! UIUpdateInfo::isPerformingLowLatencyPhases not bound
!missing-selector! UIUpdateInfo::modelTime not bound
!missing-selector! UIUpdateLink::addActionToPhase:handler: not bound
!missing-selector! UIUpdateLink::addActionToPhase:target:selector: not bound
!missing-selector! UIUpdateLink::addActionWithHandler: not bound
!missing-selector! UIUpdateLink::addActionWithTarget:selector: not bound
!missing-selector! UIUpdateLink::currentUpdateInfo not bound
!missing-selector! UIUpdateLink::isEnabled not bound
!missing-selector! UIUpdateLink::preferredFrameRateRange not bound
!missing-selector! UIUpdateLink::requiresContinuousUpdates not bound
!missing-selector! UIUpdateLink::setEnabled: not bound
!missing-selector! UIUpdateLink::setPreferredFrameRateRange: not bound
!missing-selector! UIUpdateLink::setRequiresContinuousUpdates: not bound
!missing-selector! UIUpdateLink::setWantsImmediatePresentation: not bound
!missing-selector! UIUpdateLink::setWantsLowLatencyEventDispatch: not bound
!missing-selector! UIUpdateLink::wantsImmediatePresentation not bound
!missing-selector! UIUpdateLink::wantsLowLatencyEventDispatch not bound
!missing-selector! UIViewController::preferredTransition not bound
!missing-selector! UIViewController::setPreferredTransition: not bound
!missing-selector! UIViewController::tab not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound
!missing-selector! UIZoomTransitionInteractionContext::location not bound
!missing-selector! UIZoomTransitionInteractionContext::velocity not bound
!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound
!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound
!missing-selector! UIZoomTransitionOptions::dimmingColor not bound
!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound
!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound
!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound
!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! UIActivityCollaborationModeRestriction not bound
!missing-type! UICalendarSelectionWeekOfYear not bound
!missing-type! UIDocumentViewControllerLaunchOptions not bound
!missing-type! UISearchTab not bound
!missing-type! UITab not bound
!missing-type! UITabBarControllerSidebar not bound
!missing-type! UITabGroup not bound
!missing-type! UITabSidebarItem not bound
!missing-type! UITabSidebarItemRequest not bound
!missing-type! UITabSidebarScrollTarget not bound
!missing-type! UITraitListEnvironment not bound
!missing-type! UIUpdateActionPhase not bound
!missing-type! UIUpdateInfo not bound
!missing-type! UIUpdateLink not bound
!missing-type! UIViewControllerTransition not bound
!missing-type! UIZoomTransitionAlignmentRectContext not bound
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElement not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElementBlock not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElement not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElementBlock not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElementBlock: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElementBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UITextView::setWritingToolsBehavior: not bound
!missing-selector! UITextView::writingToolsBehavior not bound
!missing-enum! UITextFormattingViewControllerComponentSize not bound
!missing-field! NSTextKit1ListMarkerFormatDocumentOption not bound
!missing-field! UITextFormattingViewControllerDecreaseFontSizeChangeType not bound
!missing-field! UITextFormattingViewControllerDecreaseIndentationChangeType not bound
!missing-field! UITextFormattingViewControllerFontAttributesComponentKey not bound
!missing-field! UITextFormattingViewControllerFontChangeType not bound
!missing-field! UITextFormattingViewControllerFontPickerComponentKey not bound
!missing-field! UITextFormattingViewControllerFontPointSizeComponentKey not bound
!missing-field! UITextFormattingViewControllerFontSizeChangeType not bound
!missing-field! UITextFormattingViewControllerFontSizeComponentKey not bound
!missing-field! UITextFormattingViewControllerFormattingStyleChangeType not bound
!missing-field! UITextFormattingViewControllerFormattingStylesComponentKey not bound
!missing-field! UITextFormattingViewControllerHighlightBlue not bound
!missing-field! UITextFormattingViewControllerHighlightChangeType not bound
!missing-field! UITextFormattingViewControllerHighlightComponentKey not bound
!missing-field! UITextFormattingViewControllerHighlightDefault not bound
!missing-field! UITextFormattingViewControllerHighlightMint not bound
!missing-field! UITextFormattingViewControllerHighlightOrange not bound
!missing-field! UITextFormattingViewControllerHighlightPickerComponentKey not bound
!missing-field! UITextFormattingViewControllerHighlightPink not bound
!missing-field! UITextFormattingViewControllerHighlightPurple not bound
!missing-field! UITextFormattingViewControllerIncreaseFontSizeChangeType not bound
!missing-field! UITextFormattingViewControllerIncreaseIndentationChangeType not bound
!missing-field! UITextFormattingViewControllerLineHeightComponentKey not bound
!missing-field! UITextFormattingViewControllerLineHeightPointSizeChangeType not bound
!missing-field! UITextFormattingViewControllerListStylesComponentKey not bound
!missing-field! UITextFormattingViewControllerRemoveBoldChangeType not bound
!missing-field! UITextFormattingViewControllerRemoveItalicChangeType not bound
!missing-field! UITextFormattingViewControllerRemoveStrikethroughChangeType not bound
!missing-field! UITextFormattingViewControllerRemoveUnderlineChangeType not bound
!missing-field! UITextFormattingViewControllerSetBoldChangeType not bound
!missing-field! UITextFormattingViewControllerSetItalicChangeType not bound
!missing-field! UITextFormattingViewControllerSetStrikethroughChangeType not bound
!missing-field! UITextFormattingViewControllerSetUnderlineChangeType not bound
!missing-field! UITextFormattingViewControllerTextAlignmentAndJustificationComponentKey not bound
!missing-field! UITextFormattingViewControllerTextAlignmentCenter not bound
!missing-field! UITextFormattingViewControllerTextAlignmentChangeType not bound
!missing-field! UITextFormattingViewControllerTextAlignmentComponentKey not bound
!missing-field! UITextFormattingViewControllerTextAlignmentJustified not bound
!missing-field! UITextFormattingViewControllerTextAlignmentLeft not bound
!missing-field! UITextFormattingViewControllerTextAlignmentNatural not bound
!missing-field! UITextFormattingViewControllerTextAlignmentRight not bound
!missing-field! UITextFormattingViewControllerTextColorChangeType not bound
!missing-field! UITextFormattingViewControllerTextColorComponentKey not bound
!missing-field! UITextFormattingViewControllerTextIndentationComponentKey not bound
!missing-field! UITextFormattingViewControllerTextListChangeType not bound
!missing-field! UITextFormattingViewControllerTextListDecimal not bound
!missing-field! UITextFormattingViewControllerTextListDisc not bound
!missing-field! UITextFormattingViewControllerTextListHyphen not bound
!missing-field! UITextFormattingViewControllerTextListOther not bound
!missing-field! UITextFormattingViewControllerUndefinedChangeType not bound
!missing-protocol! UITextFormattingViewControllerDelegate not bound
!missing-protocol-member! UITextInput::insertAttributedText: not found
!missing-protocol-member! UITextInput::replaceRange:withAttributedText: not found
!missing-protocol-member! UITextViewDelegate::textView:didBeginFormattingWithViewController: not found
!missing-protocol-member! UITextViewDelegate::textView:didEndFormattingWithViewController: not found
!missing-protocol-member! UITextViewDelegate::textView:willBeginFormattingWithViewController: not found
!missing-protocol-member! UITextViewDelegate::textView:willEndFormattingWithViewController: not found
!missing-selector! UIBackgroundConfiguration::shadowProperties not bound
!missing-selector! UIListContentConfiguration::alpha not bound
!missing-selector! UIListContentConfiguration::setAlpha: not bound
!missing-selector! UIListContentImageProperties::resolvedStrokeColorForTintColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColorTransformer: not bound
!missing-selector! UIListContentImageProperties::setStrokeWidth: not bound
!missing-selector! UIListContentImageProperties::strokeColor not bound
!missing-selector! UIListContentImageProperties::strokeColorTransformer not bound
!missing-selector! UIListContentImageProperties::strokeWidth not bound
!missing-selector! UIShadowProperties::color not bound
!missing-selector! UIShadowProperties::offset not bound
!missing-selector! UIShadowProperties::opacity not bound
!missing-selector! UIShadowProperties::path not bound
!missing-selector! UIShadowProperties::radius not bound
!missing-selector! UIShadowProperties::setColor: not bound
!missing-selector! UIShadowProperties::setOffset: not bound
!missing-selector! UIShadowProperties::setOpacity: not bound
!missing-selector! UIShadowProperties::setPath: not bound
!missing-selector! UIShadowProperties::setRadius: not bound
!missing-selector! UITextFormattingViewController::configuration not bound
!missing-selector! UITextFormattingViewController::delegate not bound
!missing-selector! UITextFormattingViewController::formattingDescriptor not bound
!missing-selector! UITextFormattingViewController::init not bound
!missing-selector! UITextFormattingViewController::initWithConfiguration: not bound
!missing-selector! UITextFormattingViewController::setDelegate: not bound
!missing-selector! UITextFormattingViewController::setFormattingDescriptor: not bound
!missing-selector! UITextFormattingViewControllerChangeValue::changeType not bound
!missing-selector! UITextFormattingViewControllerChangeValue::color not bound
!missing-selector! UITextFormattingViewControllerChangeValue::font not bound
!missing-selector! UITextFormattingViewControllerChangeValue::formattingStyleKey not bound
!missing-selector! UITextFormattingViewControllerChangeValue::highlight not bound
!missing-selector! UITextFormattingViewControllerChangeValue::numberValue not bound
!missing-selector! UITextFormattingViewControllerChangeValue::textAlignment not bound
!missing-selector! UITextFormattingViewControllerChangeValue::textList not bound
!missing-selector! UITextFormattingViewControllerComponent::componentKey not bound
!missing-selector! UITextFormattingViewControllerComponent::initWithComponentKey:preferredSize: not bound
!missing-selector! UITextFormattingViewControllerComponent::preferredSize not bound
!missing-selector! UITextFormattingViewControllerComponentGroup::components not bound
!missing-selector! UITextFormattingViewControllerComponentGroup::initWithComponents: not bound
!missing-selector! UITextFormattingViewControllerConfiguration::fontPickerConfiguration not bound
!missing-selector! UITextFormattingViewControllerConfiguration::formattingStyles not bound
!missing-selector! UITextFormattingViewControllerConfiguration::groups not bound
!missing-selector! UITextFormattingViewControllerConfiguration::init not bound
!missing-selector! UITextFormattingViewControllerConfiguration::initWithGroups: not bound
!missing-selector! UITextFormattingViewControllerConfiguration::setFontPickerConfiguration: not bound
!missing-selector! UITextFormattingViewControllerConfiguration::setFormattingStyles: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::fonts not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::formattingStyleKey not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::highlights not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::init not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::initWithAttributes: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::initWithString:range: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::lineHeight not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setFonts: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setFormattingStyleKey: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setHighlights: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setLineHeight: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setStrikethroughPresent: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setTextAlignments: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setTextColors: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setTextLists: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setUnderlinePresent: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::strikethroughPresent not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::textAlignments not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::textColors not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::textLists not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::underlinePresent not bound
!missing-selector! UITextFormattingViewControllerFormattingStyle::attributes not bound
!missing-selector! UITextFormattingViewControllerFormattingStyle::initWithStyleKey:title:attributes: not bound
!missing-selector! UITextFormattingViewControllerFormattingStyle::styleKey not bound
!missing-selector! UITextFormattingViewControllerFormattingStyle::title not bound
!missing-selector! UITextView::setTextFormattingConfiguration: not bound
!missing-selector! UITextView::textFormattingConfiguration not bound
!missing-type! UIShadowProperties not bound
!missing-type! UITextFormattingViewController not bound
!missing-type! UITextFormattingViewControllerChangeValue not bound
!missing-type! UITextFormattingViewControllerComponent not bound
!missing-type! UITextFormattingViewControllerComponentGroup not bound
!missing-type! UITextFormattingViewControllerConfiguration not bound
!missing-type! UITextFormattingViewControllerFormattingDescriptor not bound
!missing-type! UITextFormattingViewControllerFormattingStyle not bound
!missing-enum! UIFocusItemDeferralMode not bound
!missing-enum! UIWritingToolsResultOptions not bound
!missing-protocol! UITabBarControllerSidebarAnimating not bound
!missing-protocol-member! UIFocusItem::focusItemDeferralMode not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:displayedViewControllersForTab:proposedViewControllers: not found
!missing-protocol-member! UITextInput::attributedTextInRange: not found
!missing-protocol-member! UITextInput::didDismissWritingTools not found
!missing-protocol-member! UITextInput::willPresentWritingTools not found
!missing-protocol-member! UITextInputTraits::allowedWritingToolsResultOptions not found
!missing-protocol-member! UITextInputTraits::setAllowedWritingToolsResultOptions: not found
!missing-selector! UITab::managingTabGroup not bound
!missing-selector! UITextView::allowedWritingToolsResultOptions not bound
!missing-selector! UITextView::setAllowedWritingToolsResultOptions: not bound
!missing-field! UISceneSystemProtectionDidChangeNotification not bound
!missing-selector! UIScene::systemProtectionManager not bound
!missing-selector! UISceneSystemProtectionManager::isUserAuthenticationEnabled not bound
!missing-type! UISceneSystemProtectionManager not bound

Просмотреть файл

@ -1677,3 +1677,7 @@
!incorrect-protocol-member! NSAccessibility::accessibilityUserInputLabels is REQUIRED and should be abstract
!incorrect-protocol-member! NSAccessibility::setAccessibilityAttributedUserInputLabels: is REQUIRED and should be abstract
!incorrect-protocol-member! NSAccessibility::setAccessibilityUserInputLabels: is REQUIRED and should be abstract
# introduced and deprecated in the same version
!missing-protocol-member! NSTextInputTraits::setWritingToolsAllowedInputOptions: not found
!missing-protocol-member! NSTextInputTraits::writingToolsAllowedInputOptions not found

Просмотреть файл

@ -1,136 +0,0 @@
!deprecated-attribute-missing! NSEPSImageRep missing a [Deprecated] attribute
!deprecated-attribute-missing! NSProgressIndicator::controlTint missing a [Deprecated] attribute
!deprecated-attribute-missing! NSProgressIndicator::isBezeled missing a [Deprecated] attribute
!deprecated-attribute-missing! NSProgressIndicator::setBezeled: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSProgressIndicator::setControlTint: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSShowAnimationEffect missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::delegate missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::initWithVoice: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::isSpeaking missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::setDelegate: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::setUsesFeedbackWindow: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::startSpeakingString: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::startSpeakingString:toURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::stopSpeaking missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::usesFeedbackWindow missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizerDelegate::speechSynthesizer:didFinishSpeaking: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizerDelegate::speechSynthesizer:willSpeakPhoneme: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizerDelegate::speechSynthesizer:willSpeakWord:ofString: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSViewController::presentViewControllerInWidget: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDocument::shouldRunSavePanelWithAccessoryView missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::configurationDictionary missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::setConfigurationFromDictionary: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::setShowsBaselineSeparator: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::showsBaselineSeparator missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbarItem::allowsDuplicatesInToolbar missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::disableScreenUpdatesUntilFlush missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::initWithWindowRef: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::setShowsResizeIndicator: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::showsResizeIndicator missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::windowRef missing a [Deprecated] attribute
!extra-enum-value! Managed value 2 for NSWindowSharingType.ReadWrite not found in native headers
!missing-enum! NSCursorFrameResizeDirections not bound
!missing-enum! NSCursorFrameResizePosition not bound
!missing-enum! NSHorizontalDirections not bound
!missing-enum! NSSharingCollaborationMode not bound
!missing-enum! NSVerticalDirections not bound
!missing-enum! NSWritingToolsBehavior not bound
!missing-field! NSAdaptiveImageGlyphAttributeName not bound
!missing-field! NSTextHighlightColorSchemeAttributeName not bound
!missing-field! NSTextHighlightColorSchemeBlue not bound
!missing-field! NSTextHighlightColorSchemeDefault not bound
!missing-field! NSTextHighlightColorSchemeMint not bound
!missing-field! NSTextHighlightColorSchemeOrange not bound
!missing-field! NSTextHighlightColorSchemePink not bound
!missing-field! NSTextHighlightColorSchemePurple not bound
!missing-field! NSTextHighlightStyleAttributeName not bound
!missing-field! NSTextHighlightStyleDefault not bound
!missing-field! NSToolbarNewIndexKey not bound
!missing-protocol-member! NSOpenSavePanelDelegate::panel:didSelectType: not found
!missing-protocol-member! NSOpenSavePanelDelegate::panel:displayNameForType: not found
!missing-protocol-member! NSSharingServicePickerDelegate::sharingServicePickerCollaborationModeRestrictions: not found
!missing-protocol-member! NSTextInputClient::insertAdaptiveImageGlyph:replacementRange: not found
!missing-protocol-member! NSTextInputClient::supportsAdaptiveImageGlyph not found
!missing-protocol-member! NSTextInputTraits::mathExpressionCompletionType not found
!missing-protocol-member! NSTextInputTraits::setMathExpressionCompletionType: not found
!missing-protocol-member! NSTextInputTraits::setWritingToolsAllowedInputOptions: not found
!missing-protocol-member! NSTextInputTraits::setWritingToolsBehavior: not found
!missing-protocol-member! NSTextInputTraits::writingToolsAllowedInputOptions not found
!missing-protocol-member! NSTextInputTraits::writingToolsBehavior not found
!missing-protocol-member! NSTextViewDelegate::textView:writingToolsIgnoredRangesInEnclosingRange: not found
!missing-protocol-member! NSTextViewDelegate::textViewWritingToolsDidEnd: not found
!missing-protocol-member! NSTextViewDelegate::textViewWritingToolsWillBegin: not found
!missing-protocol-member! NSWindowDelegate::windowForSharingRequestFromWindow: not found
!missing-selector! +NSAdaptiveImageGlyph::contentType not bound
!missing-selector! +NSAttributedString::attributedStringWithAdaptiveImageGlyph:attributes: not bound
!missing-selector! +NSAttributedString::attributedStringWithAttachment:attributes: not bound
!missing-selector! +NSCursor::columnResizeCursor not bound
!missing-selector! +NSCursor::columnResizeCursorInDirections: not bound
!missing-selector! +NSCursor::frameResizeCursorFromPosition:inDirections: not bound
!missing-selector! +NSCursor::rowResizeCursor not bound
!missing-selector! +NSCursor::rowResizeCursorInDirections: not bound
!missing-selector! +NSCursor::zoomInCursor not bound
!missing-selector! +NSCursor::zoomOutCursor not bound
!missing-selector! +NSPopUpButton::popUpButtonWithMenu:target:action: not bound
!missing-selector! +NSPopUpButton::pullDownButtonWithImage:menu: not bound
!missing-selector! +NSPopUpButton::pullDownButtonWithTitle:image:menu: not bound
!missing-selector! +NSPopUpButton::pullDownButtonWithTitle:menu: not bound
!missing-selector! NSAdaptiveImageGlyph::contentDescription not bound
!missing-selector! NSAdaptiveImageGlyph::contentIdentifier not bound
!missing-selector! NSAdaptiveImageGlyph::imageContent not bound
!missing-selector! NSAdaptiveImageGlyph::initWithCoder: not bound
!missing-selector! NSAdaptiveImageGlyph::initWithImageContent: not bound
!missing-selector! NSAttributedString::prefersRTFDInRange: not bound
!missing-selector! NSDocument::savePanelShowsFileFormatsControl not bound
!missing-selector! NSPopUpButton::altersStateOfSelectedItem not bound
!missing-selector! NSPopUpButton::setAltersStateOfSelectedItem: not bound
!missing-selector! NSPopUpButton::setUsesItemFromMenu: not bound
!missing-selector! NSPopUpButton::usesItemFromMenu not bound
!missing-selector! NSSavePanel::currentContentType not bound
!missing-selector! NSSavePanel::setCurrentContentType: not bound
!missing-selector! NSSavePanel::setShowsContentTypes: not bound
!missing-selector! NSSavePanel::showsContentTypes not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertDismissButtonTitle not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertMessage not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertRecoverySuggestionButtonLaunchURL not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertRecoverySuggestionButtonTitle not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertTitle not bound
!missing-selector! NSSharingCollaborationModeRestriction::disabledMode not bound
!missing-selector! NSSharingCollaborationModeRestriction::initWithDisabledMode: not bound
!missing-selector! NSSharingCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage: not bound
!missing-selector! NSSharingCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle: not bound
!missing-selector! NSSharingCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle:alertRecoverySuggestionButtonTitle:alertRecoverySuggestionButtonLaunchURL: not bound
!missing-selector! NSTextView::drawTextHighlightBackgroundForTextRange:origin: not bound
!missing-selector! NSTextView::highlight: not bound
!missing-selector! NSTextView::isWritingToolsActive not bound
!missing-selector! NSTextView::mathExpressionCompletionType not bound
!missing-selector! NSTextView::setMathExpressionCompletionType: not bound
!missing-selector! NSTextView::setTextHighlightAttributes: not bound
!missing-selector! NSTextView::textHighlightAttributes not bound
!missing-selector! NSToolbar::allowsDisplayModeCustomization not bound
!missing-selector! NSToolbar::itemIdentifiers not bound
!missing-selector! NSToolbar::removeItemWithItemIdentifier: not bound
!missing-selector! NSToolbar::setAllowsDisplayModeCustomization: not bound
!missing-selector! NSToolbar::setItemIdentifiers: not bound
!missing-selector! NSToolbarItem::isHidden not bound
!missing-selector! NSToolbarItem::setHidden: not bound
!missing-selector! NSWindow::beginDraggingSessionWithItems:event:source: not bound
!missing-selector! NSWindow::requestSharingOfWindow:completionHandler: not bound
!missing-selector! NSWindow::requestSharingOfWindowUsingPreview:title:completionHandler: not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! NSSharingCollaborationModeRestriction not bound
!missing-selector! NSTextView::setWritingToolsBehavior: not bound
!missing-selector! NSTextView::writingToolsBehavior not bound
!missing-selector! NSWindow::cascadingReferenceFrame not bound
!missing-field! NSTextKit1ListMarkerFormatDocumentOption not bound
!missing-protocol! NSViewContentSelectionInfo not bound
!missing-protocol-member! NSStandardKeyBindingResponding::showContextMenuForSelection: not found
!missing-selector! NSMenuItem::setSubtitle: not bound
!missing-selector! NSMenuItem::subtitle not bound
!missing-selector! NSResponder::contextMenuKeyDown: not bound
!missing-enum! NSWritingToolsResultOptions not bound
!missing-protocol-member! NSTextInputTraits::allowedWritingToolsResultOptions not found
!missing-protocol-member! NSTextInputTraits::setAllowedWritingToolsResultOptions: not found
!missing-selector! NSTextView::allowedWritingToolsResultOptions not bound
!missing-selector! NSTextView::setAllowedWritingToolsResultOptions: not bound

Просмотреть файл

@ -1,222 +0,0 @@
!missing-enum! UICollectionLayoutListContentHuggingElements not bound
!missing-enum! UIColorProminence not bound
!missing-enum! UIListEnvironment not bound
!missing-enum! UITabBarControllerMode not bound
!missing-enum! UITableViewContentHuggingElements not bound
!missing-enum! UITabPlacement not bound
!missing-enum! UITextMathExpressionCompletionType not bound
!missing-field! NSAdaptiveImageGlyphAttributeName not bound
!missing-field! NSTextHighlightColorSchemeAttributeName not bound
!missing-field! NSTextHighlightColorSchemeBlue not bound
!missing-field! NSTextHighlightColorSchemeDefault not bound
!missing-field! NSTextHighlightColorSchemeMint not bound
!missing-field! NSTextHighlightColorSchemeOrange not bound
!missing-field! NSTextHighlightColorSchemePink not bound
!missing-field! NSTextHighlightColorSchemePurple not bound
!missing-field! NSTextHighlightStyleAttributeName not bound
!missing-field! NSTextHighlightStyleDefault not bound
!missing-protocol-member! UIFocusItem::isTransparentFocusItem not found
!missing-protocol-member! UIMutableTraits::listEnvironment not found
!missing-protocol-member! UIMutableTraits::setListEnvironment: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:didSelectTab:previousTab: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:shouldSelectTab: not found
!missing-protocol-member! UITextInput::insertAdaptiveImageGlyph:replacementRange: not found
!missing-protocol-member! UITextInput::setSupportsAdaptiveImageGlyph: not found
!missing-protocol-member! UITextInput::supportsAdaptiveImageGlyph not found
!missing-protocol-member! UITextInputTraits::mathExpressionCompletionType not found
!missing-protocol-member! UITextInputTraits::setMathExpressionCompletionType: not found
!missing-selector! +NSAdaptiveImageGlyph::contentType not bound
!missing-selector! +NSAttributedString::attributedStringWithAdaptiveImageGlyph:attributes: not bound
!missing-selector! +NSAttributedString::attributedStringWithAttachment:attributes: not bound
!missing-selector! +UIBackgroundConfiguration::listCellConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listFooterConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listHeaderConfiguration not bound
!missing-selector! +UIListContentConfiguration::footerConfiguration not bound
!missing-selector! +UIListContentConfiguration::headerConfiguration not bound
!missing-selector! +UITraitCollection::traitCollectionWithListEnvironment: not bound
!missing-selector! +UIUpdateActionPhase::afterCADisplayLinkDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::afterEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterLowLatencyCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::afterLowLatencyEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterUpdateComplete not bound
!missing-selector! +UIUpdateActionPhase::afterUpdateScheduled not bound
!missing-selector! +UIUpdateActionPhase::beforeCADisplayLinkDispatch not bound
!missing-selector! +UIUpdateActionPhase::beforeCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::beforeEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::beforeLowLatencyCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::beforeLowLatencyEventDispatch not bound
!missing-selector! +UIUpdateInfo::currentUpdateInfoForView: not bound
!missing-selector! +UIUpdateInfo::currentUpdateInfoForWindowScene: not bound
!missing-selector! +UIUpdateLink::updateLinkForView: not bound
!missing-selector! +UIUpdateLink::updateLinkForView:actionHandler: not bound
!missing-selector! +UIUpdateLink::updateLinkForView:actionTarget:selector: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene:actionHandler: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene:actionTarget:selector: not bound
!missing-selector! NSAdaptiveImageGlyph::contentDescription not bound
!missing-selector! NSAdaptiveImageGlyph::contentIdentifier not bound
!missing-selector! NSAdaptiveImageGlyph::imageContent not bound
!missing-selector! NSAdaptiveImageGlyph::initWithCoder: not bound
!missing-selector! NSAdaptiveImageGlyph::initWithImageContent: not bound
!missing-selector! NSAttributedString::prefersRTFDInRange: not bound
!missing-selector! UICollectionLayoutListConfiguration::contentHuggingElements not bound
!missing-selector! UICollectionLayoutListConfiguration::setContentHuggingElements: not bound
!missing-selector! UICollectionView::indexPathForSupplementaryView: not bound
!missing-selector! UIColor::colorWithProminence: not bound
!missing-selector! UIColor::prominence not bound
!missing-selector! UISearchTab::initWithViewControllerProvider: not bound
!missing-selector! UITab::allowsHiding not bound
!missing-selector! UITab::badgeValue not bound
!missing-selector! UITab::identifier not bound
!missing-selector! UITab::image not bound
!missing-selector! UITab::initWithTitle:image:identifier:viewControllerProvider: not bound
!missing-selector! UITab::isHidden not bound
!missing-selector! UITab::isHiddenByDefault not bound
!missing-selector! UITab::parent not bound
!missing-selector! UITab::preferredPlacement not bound
!missing-selector! UITab::setAllowsHiding: not bound
!missing-selector! UITab::setBadgeValue: not bound
!missing-selector! UITab::setHidden: not bound
!missing-selector! UITab::setHiddenByDefault: not bound
!missing-selector! UITab::setImage: not bound
!missing-selector! UITab::setPreferredPlacement: not bound
!missing-selector! UITab::setSubtitle: not bound
!missing-selector! UITab::setTitle: not bound
!missing-selector! UITab::setUserInfo: not bound
!missing-selector! UITab::subtitle not bound
!missing-selector! UITab::tabBarController not bound
!missing-selector! UITab::title not bound
!missing-selector! UITab::userInfo not bound
!missing-selector! UITab::viewController not bound
!missing-selector! UITabBarController::compactTabIdentifiers not bound
!missing-selector! UITabBarController::customizationIdentifier not bound
!missing-selector! UITabBarController::initWithTabs: not bound
!missing-selector! UITabBarController::isTabBarHidden not bound
!missing-selector! UITabBarController::mode not bound
!missing-selector! UITabBarController::selectedTab not bound
!missing-selector! UITabBarController::setCompactTabIdentifiers: not bound
!missing-selector! UITabBarController::setCustomizationIdentifier: not bound
!missing-selector! UITabBarController::setMode: not bound
!missing-selector! UITabBarController::setSelectedTab: not bound
!missing-selector! UITabBarController::setTabBarHidden: not bound
!missing-selector! UITabBarController::setTabBarHidden:animated: not bound
!missing-selector! UITabBarController::setTabs: not bound
!missing-selector! UITabBarController::setTabs:animated: not bound
!missing-selector! UITabBarController::tabForIdentifier: not bound
!missing-selector! UITabBarController::tabs not bound
!missing-selector! UITabGroup::allowsReordering not bound
!missing-selector! UITabGroup::children not bound
!missing-selector! UITabGroup::defaultChildIdentifier not bound
!missing-selector! UITabGroup::displayOrder not bound
!missing-selector! UITabGroup::displayOrderIdentifiers not bound
!missing-selector! UITabGroup::initWithTitle:image:identifier:children:viewControllerProvider: not bound
!missing-selector! UITabGroup::managingNavigationController not bound
!missing-selector! UITabGroup::selectedChild not bound
!missing-selector! UITabGroup::setAllowsReordering: not bound
!missing-selector! UITabGroup::setChildren: not bound
!missing-selector! UITabGroup::setDefaultChildIdentifier: not bound
!missing-selector! UITabGroup::setDisplayOrderIdentifiers: not bound
!missing-selector! UITabGroup::setManagingNavigationController: not bound
!missing-selector! UITabGroup::setSelectedChild: not bound
!missing-selector! UITabGroup::tabForIdentifier: not bound
!missing-selector! UITableView::contentHuggingElements not bound
!missing-selector! UITableView::setContentHuggingElements: not bound
!missing-selector! UITextView::drawTextHighlightBackgroundForTextRange:origin: not bound
!missing-selector! UITextView::setTextHighlightAttributes: not bound
!missing-selector! UITextView::textHighlightAttributes not bound
!missing-selector! UITraitCollection::listEnvironment not bound
!missing-selector! UIUpdateInfo::completionDeadlineTime not bound
!missing-selector! UIUpdateInfo::estimatedPresentationTime not bound
!missing-selector! UIUpdateInfo::isImmediatePresentationExpected not bound
!missing-selector! UIUpdateInfo::isLowLatencyEventDispatchConfirmed not bound
!missing-selector! UIUpdateInfo::isPerformingLowLatencyPhases not bound
!missing-selector! UIUpdateInfo::modelTime not bound
!missing-selector! UIUpdateLink::addActionToPhase:handler: not bound
!missing-selector! UIUpdateLink::addActionToPhase:target:selector: not bound
!missing-selector! UIUpdateLink::addActionWithHandler: not bound
!missing-selector! UIUpdateLink::addActionWithTarget:selector: not bound
!missing-selector! UIUpdateLink::currentUpdateInfo not bound
!missing-selector! UIUpdateLink::isEnabled not bound
!missing-selector! UIUpdateLink::preferredFrameRateRange not bound
!missing-selector! UIUpdateLink::requiresContinuousUpdates not bound
!missing-selector! UIUpdateLink::setEnabled: not bound
!missing-selector! UIUpdateLink::setPreferredFrameRateRange: not bound
!missing-selector! UIUpdateLink::setRequiresContinuousUpdates: not bound
!missing-selector! UIUpdateLink::setWantsImmediatePresentation: not bound
!missing-selector! UIUpdateLink::setWantsLowLatencyEventDispatch: not bound
!missing-selector! UIUpdateLink::wantsImmediatePresentation not bound
!missing-selector! UIUpdateLink::wantsLowLatencyEventDispatch not bound
!missing-selector! UIViewController::tab not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! UISearchTab not bound
!missing-type! UITab not bound
!missing-type! UITabGroup not bound
!missing-type! UITraitListEnvironment not bound
!missing-type! UIUpdateActionPhase not bound
!missing-type! UIUpdateInfo not bound
!missing-type! UIUpdateLink not bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound
!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound
!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound
!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound
!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UIViewController::preferredTransition not bound
!missing-selector! UIViewController::setPreferredTransition: not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound
!missing-selector! UIZoomTransitionInteractionContext::location not bound
!missing-selector! UIZoomTransitionInteractionContext::velocity not bound
!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound
!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound
!missing-selector! UIZoomTransitionOptions::dimmingColor not bound
!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound
!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound
!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound
!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound
!missing-type! UIViewControllerTransition not bound
!missing-type! UIZoomTransitionAlignmentRectContext not bound
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound
!missing-field! NSTextKit1ListMarkerFormatDocumentOption not bound
!missing-protocol-member! UITextInput::insertAttributedText: not found
!missing-protocol-member! UITextInput::replaceRange:withAttributedText: not found
!missing-selector! UIBackgroundConfiguration::shadowProperties not bound
!missing-selector! UIListContentConfiguration::alpha not bound
!missing-selector! UIListContentConfiguration::setAlpha: not bound
!missing-selector! UIListContentImageProperties::resolvedStrokeColorForTintColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColorTransformer: not bound
!missing-selector! UIListContentImageProperties::setStrokeWidth: not bound
!missing-selector! UIListContentImageProperties::strokeColor not bound
!missing-selector! UIListContentImageProperties::strokeColorTransformer not bound
!missing-selector! UIListContentImageProperties::strokeWidth not bound
!missing-selector! UIShadowProperties::color not bound
!missing-selector! UIShadowProperties::offset not bound
!missing-selector! UIShadowProperties::opacity not bound
!missing-selector! UIShadowProperties::path not bound
!missing-selector! UIShadowProperties::radius not bound
!missing-selector! UIShadowProperties::setColor: not bound
!missing-selector! UIShadowProperties::setOffset: not bound
!missing-selector! UIShadowProperties::setOpacity: not bound
!missing-selector! UIShadowProperties::setPath: not bound
!missing-selector! UIShadowProperties::setRadius: not bound
!missing-type! UIShadowProperties not bound
!missing-enum! UIFocusItemDeferralMode not bound
!missing-protocol-member! UIFocusItem::focusItemDeferralMode not found
!missing-protocol-member! UITextInput::attributedTextInRange: not found
!missing-selector! UITab::managingTabGroup not bound

Просмотреть файл

@ -547,3 +547,4 @@
!missing-type! NSPDFPanel not bound
!missing-type! NSPICTImageRep not bound
!missing-type! NSPersistentDocument not bound

Просмотреть файл

@ -20,6 +20,8 @@
!incorrect-protocol-member! UIFocusItem::frame is REQUIRED and should be abstract
!incorrect-protocol-member! UIFocusEnvironment::focusItemContainer is REQUIRED and should be abstract
!incorrect-protocol-member! UIFocusEnvironment::parentFocusEnvironment is REQUIRED and should be abstract
!incorrect-protocol-member! UIMutableTraits::listEnvironment is REQUIRED and should be abstract
!incorrect-protocol-member! UIMutableTraits::setListEnvironment: is REQUIRED and should be abstract
## Special case from UIAccessibilityAction. We added it (completly) on UIResponser but magic tap is also available on app delegate according to docs
## See comments is uikit.cs for more info

Просмотреть файл

@ -1,470 +1,8 @@
!deprecated-attribute-missing! UIFontPickerViewControllerConfiguration::filteredLanguagesPredicate missing a [Deprecated] attribute
!deprecated-attribute-missing! UIFontPickerViewControllerConfiguration::setFilteredLanguagesPredicate: missing a [Deprecated] attribute
!missing-enum! UIActivityCollaborationMode not bound
!missing-enum! UIActivitySectionTypes not bound
!missing-enum! UICollectionLayoutListContentHuggingElements not bound
!missing-enum! UIColorProminence not bound
!missing-enum! UIListEnvironment not bound
!missing-enum! UITabBarControllerMode not bound
!missing-enum! UITabBarControllerSidebarLayout not bound
!missing-enum! UITabGroupSidebarAppearance not bound
!missing-enum! UITableViewContentHuggingElements not bound
!missing-enum! UITabPlacement not bound
!missing-enum! UITextMathExpressionCompletionType not bound
!missing-enum! UIWritingToolsBehavior not bound
!missing-enum-value! UIPasteControlDisplayMode native value UIPasteControlDisplayModeArrowAndLabel = 3 not bound
!missing-field! NSAdaptiveImageGlyphAttributeName not bound
!missing-field! NSTextHighlightColorSchemeAttributeName not bound
!missing-field! NSTextHighlightColorSchemeBlue not bound
!missing-field! NSTextHighlightColorSchemeDefault not bound
!missing-field! NSTextHighlightColorSchemeMint not bound
!missing-field! NSTextHighlightColorSchemeOrange not bound
!missing-field! NSTextHighlightColorSchemePink not bound
!missing-field! NSTextHighlightColorSchemePurple not bound
!missing-field! NSTextHighlightStyleAttributeName not bound
!missing-field! NSTextHighlightStyleDefault not bound
!missing-field! UIActivityItemsConfigurationMetadataKeyCollaborationModeRestrictions not bound
!missing-field! UIActivityItemsConfigurationMetadataKeyShareRecipients not bound
!missing-field! UIDocumentCreationIntentDefault not bound
!missing-protocol! UICalendarSelectionWeekOfYearDelegate not bound
!missing-protocol! UITabBarControllerSidebarDelegate not bound
!missing-protocol-member! UIActivityItemSource::activityViewControllerShareRecipients: not found
!missing-protocol-member! UIMutableTraits::listEnvironment not found
!missing-protocol-member! UIMutableTraits::setListEnvironment: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:didSelectTab:previousTab: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:displayOrderDidChangeForGroup: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:shouldSelectTab: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:tab:acceptItemsFromDropSession: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:tab:operationForAcceptingItemsFromDropSession: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:visibilityDidChangeForTabs: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarControllerDidEndEditing: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarControllerWillBeginEditing: not found
!missing-protocol-member! UITextInput::insertAdaptiveImageGlyph:replacementRange: not found
!missing-protocol-member! UITextInput::isEditable not found
!missing-protocol-member! UITextInput::setSupportsAdaptiveImageGlyph: not found
!missing-protocol-member! UITextInput::supportsAdaptiveImageGlyph not found
!missing-protocol-member! UITextInputTraits::mathExpressionCompletionType not found
!missing-protocol-member! UITextInputTraits::setMathExpressionCompletionType: not found
!missing-protocol-member! UITextInputTraits::setWritingToolsBehavior: not found
!missing-protocol-member! UITextInputTraits::writingToolsBehavior not found
!missing-selector! UIActivityCollaborationModeRestriction::description not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-protocol-member! UITextViewDelegate::textView:writingToolsIgnoredRangesInEnclosingRange: not found
!missing-protocol-member! UITextViewDelegate::textViewWritingToolsDidEnd: not found
!missing-protocol-member! UITextViewDelegate::textViewWritingToolsWillBegin: not found
!missing-selector! +NSAdaptiveImageGlyph::contentType not bound
!missing-selector! +NSAttributedString::attributedStringWithAdaptiveImageGlyph:attributes: not bound
!missing-selector! +NSAttributedString::attributedStringWithAttachment:attributes: not bound
!missing-selector! +UIBackgroundConfiguration::listCellConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listFooterConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listHeaderConfiguration not bound
!missing-selector! +UIDocumentViewControllerLaunchOptions::createDocumentActionWithIntent: not bound
!missing-selector! +UIListContentConfiguration::footerConfiguration not bound
!missing-selector! +UIListContentConfiguration::headerConfiguration not bound
!missing-selector! +UITabSidebarItem::itemFromRequest: not bound
!missing-selector! +UITabSidebarScrollTarget::targetForFooter not bound
!missing-selector! +UITabSidebarScrollTarget::targetForHeader not bound
!missing-selector! +UITabSidebarScrollTarget::targetForTab: not bound
!missing-selector! +UITraitCollection::traitCollectionWithListEnvironment: not bound
!missing-selector! +UIUpdateActionPhase::afterCADisplayLinkDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::afterEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterLowLatencyCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::afterLowLatencyEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterUpdateComplete not bound
!missing-selector! +UIUpdateActionPhase::afterUpdateScheduled not bound
!missing-selector! +UIUpdateActionPhase::beforeCADisplayLinkDispatch not bound
!missing-selector! +UIUpdateActionPhase::beforeCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::beforeEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::beforeLowLatencyCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::beforeLowLatencyEventDispatch not bound
!missing-selector! +UIUpdateInfo::currentUpdateInfoForView: not bound
!missing-selector! +UIUpdateInfo::currentUpdateInfoForWindowScene: not bound
!missing-selector! +UIUpdateLink::updateLinkForView: not bound
!missing-selector! +UIUpdateLink::updateLinkForView:actionHandler: not bound
!missing-selector! +UIUpdateLink::updateLinkForView:actionTarget:selector: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene:actionHandler: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene:actionTarget:selector: not bound
!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound
!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound
!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound
!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound
!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound
!missing-selector! NSAdaptiveImageGlyph::contentDescription not bound
!missing-selector! NSAdaptiveImageGlyph::contentIdentifier not bound
!missing-selector! NSAdaptiveImageGlyph::imageContent not bound
!missing-selector! NSAdaptiveImageGlyph::initWithCoder: not bound
!missing-selector! NSAdaptiveImageGlyph::initWithImageContent: not bound
!missing-selector! NSAttributedString::prefersRTFDInRange: not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertDismissButtonTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertMessage not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertRecoverySuggestionButtonLaunchURL not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertRecoverySuggestionButtonTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::alertTitle not bound
!missing-selector! UIActivityCollaborationModeRestriction::description not bound
!missing-selector! UIActivityCollaborationModeRestriction::disabledMode not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle: not bound
!missing-selector! UIActivityCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle:alertRecoverySuggestionButtonTitle:alertRecoverySuggestionButtonLaunchURL: not bound
!missing-selector! UIActivityViewController::excludedActivitySectionTypes not bound
!missing-selector! UIActivityViewController::setExcludedActivitySectionTypes: not bound
!missing-selector! UICalendarSelectionWeekOfYear::delegate not bound
!missing-selector! UICalendarSelectionWeekOfYear::initWithDelegate: not bound
!missing-selector! UICalendarSelectionWeekOfYear::selectedWeekOfYear not bound
!missing-selector! UICalendarSelectionWeekOfYear::setSelectedWeekOfYear: not bound
!missing-selector! UICalendarSelectionWeekOfYear::setSelectedWeekOfYear:animated: not bound
!missing-selector! UICollectionLayoutListConfiguration::contentHuggingElements not bound
!missing-selector! UICollectionLayoutListConfiguration::setContentHuggingElements: not bound
!missing-selector! UICollectionView::indexPathForSupplementaryView: not bound
!missing-selector! UIColor::colorWithProminence: not bound
!missing-selector! UIColor::prominence not bound
!missing-selector! UIDocumentBrowserViewController::activeDocumentCreationIntent not bound
!missing-selector! UIDocumentViewController::launchOptions not bound
!missing-selector! UIDocumentViewController::setLaunchOptions: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::background not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::backgroundAccessoryView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::browserViewController not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::documentTargetView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::foregroundAccessoryView not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::primaryAction not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::secondaryAction not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBackground: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBackgroundAccessoryView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setBrowserViewController: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setDocumentTargetView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setForegroundAccessoryView: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setPrimaryAction: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setSecondaryAction: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::setTitle: not bound
!missing-selector! UIDocumentViewControllerLaunchOptions::title not bound
!missing-selector! UIPasteControlConfiguration::imagePlacement not bound
!missing-selector! UIPasteControlConfiguration::setImagePlacement: not bound
!missing-selector! UISearchTab::initWithViewControllerProvider: not bound
!missing-selector! UITab::allowsHiding not bound
!missing-selector! UITab::badgeValue not bound
!missing-selector! UITab::identifier not bound
!missing-selector! UITab::image not bound
!missing-selector! UITab::initWithTitle:image:identifier:viewControllerProvider: not bound
!missing-selector! UITab::isHidden not bound
!missing-selector! UITab::isHiddenByDefault not bound
!missing-selector! UITab::parent not bound
!missing-selector! UITab::preferredPlacement not bound
!missing-selector! UITab::setAllowsHiding: not bound
!missing-selector! UITab::setBadgeValue: not bound
!missing-selector! UITab::setHidden: not bound
!missing-selector! UITab::setHiddenByDefault: not bound
!missing-selector! UITab::setImage: not bound
!missing-selector! UITab::setPreferredPlacement: not bound
!missing-selector! UITab::setSubtitle: not bound
!missing-selector! UITab::setTitle: not bound
!missing-selector! UITab::setUserInfo: not bound
!missing-selector! UITab::subtitle not bound
!missing-selector! UITab::tabBarController not bound
!missing-selector! UITab::title not bound
!missing-selector! UITab::userInfo not bound
!missing-selector! UITab::viewController not bound
!missing-selector! UITabBarController::compactTabIdentifiers not bound
!missing-selector! UITabBarController::customizationIdentifier not bound
!missing-selector! UITabBarController::initWithTabs: not bound
!missing-selector! UITabBarController::isTabBarHidden not bound
!missing-selector! UITabBarController::mode not bound
!missing-selector! UITabBarController::selectedTab not bound
!missing-selector! UITabBarController::setCompactTabIdentifiers: not bound
!missing-selector! UITabBarController::setCustomizationIdentifier: not bound
!missing-selector! UITabBarController::setMode: not bound
!missing-selector! UITabBarController::setSelectedTab: not bound
!missing-selector! UITabBarController::setTabBarHidden: not bound
!missing-selector! UITabBarController::setTabBarHidden:animated: not bound
!missing-selector! UITabBarController::setTabs: not bound
!missing-selector! UITabBarController::setTabs:animated: not bound
!missing-selector! UITabBarController::sidebar not bound
!missing-selector! UITabBarController::tabForIdentifier: not bound
!missing-selector! UITabBarController::tabs not bound
!missing-selector! UITabBarControllerSidebar::bottomBarView not bound
!missing-selector! UITabBarControllerSidebar::delegate not bound
!missing-selector! UITabBarControllerSidebar::footerContentConfiguration not bound
!missing-selector! UITabBarControllerSidebar::headerContentConfiguration not bound
!missing-selector! UITabBarControllerSidebar::isHidden not bound
!missing-selector! UITabBarControllerSidebar::preferredLayout not bound
!missing-selector! UITabBarControllerSidebar::reconfigureItemForTab: not bound
!missing-selector! UITabBarControllerSidebar::scrollToTarget:animated: not bound
!missing-selector! UITabBarControllerSidebar::setBottomBarView: not bound
!missing-selector! UITabBarControllerSidebar::setDelegate: not bound
!missing-selector! UITabBarControllerSidebar::setFooterContentConfiguration: not bound
!missing-selector! UITabBarControllerSidebar::setHeaderContentConfiguration: not bound
!missing-selector! UITabBarControllerSidebar::setHidden: not bound
!missing-selector! UITabBarControllerSidebar::setPreferredLayout: not bound
!missing-selector! UITabGroup::allowsReordering not bound
!missing-selector! UITabGroup::children not bound
!missing-selector! UITabGroup::defaultChildIdentifier not bound
!missing-selector! UITabGroup::displayOrder not bound
!missing-selector! UITabGroup::displayOrderIdentifiers not bound
!missing-selector! UITabGroup::initWithTitle:image:identifier:children:viewControllerProvider: not bound
!missing-selector! UITabGroup::managingNavigationController not bound
!missing-selector! UITabGroup::selectedChild not bound
!missing-selector! UITabGroup::setAllowsReordering: not bound
!missing-selector! UITabGroup::setChildren: not bound
!missing-selector! UITabGroup::setDefaultChildIdentifier: not bound
!missing-selector! UITabGroup::setDisplayOrderIdentifiers: not bound
!missing-selector! UITabGroup::setManagingNavigationController: not bound
!missing-selector! UITabGroup::setSelectedChild: not bound
!missing-selector! UITabGroup::setSidebarActions: not bound
!missing-selector! UITabGroup::setSidebarAppearance: not bound
!missing-selector! UITabGroup::sidebarActions not bound
!missing-selector! UITabGroup::sidebarAppearance not bound
!missing-selector! UITabGroup::tabForIdentifier: not bound
!missing-selector! UITableView::contentHuggingElements not bound
!missing-selector! UITableView::setContentHuggingElements: not bound
!missing-selector! UITabSidebarItem::accessories not bound
!missing-selector! UITabSidebarItem::action not bound
!missing-selector! UITabSidebarItem::backgroundConfiguration not bound
!missing-selector! UITabSidebarItem::configurationState not bound
!missing-selector! UITabSidebarItem::contentConfiguration not bound
!missing-selector! UITabSidebarItem::defaultBackgroundConfiguration not bound
!missing-selector! UITabSidebarItem::defaultContentConfiguration not bound
!missing-selector! UITabSidebarItem::setAccessories: not bound
!missing-selector! UITabSidebarItem::setBackgroundConfiguration: not bound
!missing-selector! UITabSidebarItem::setContentConfiguration: not bound
!missing-selector! UITabSidebarItem::tab not bound
!missing-selector! UITabSidebarItemRequest::action not bound
!missing-selector! UITabSidebarItemRequest::tab not bound
!missing-selector! UITextView::drawTextHighlightBackgroundForTextRange:origin: not bound
!missing-selector! UITextView::isWritingToolsActive not bound
!missing-selector! UITextView::setTextHighlightAttributes: not bound
!missing-selector! UITextView::textHighlightAttributes not bound
!missing-selector! UITraitCollection::listEnvironment not bound
!missing-selector! UIUpdateInfo::completionDeadlineTime not bound
!missing-selector! UIUpdateInfo::estimatedPresentationTime not bound
!missing-selector! UIUpdateInfo::isImmediatePresentationExpected not bound
!missing-selector! UIUpdateInfo::isLowLatencyEventDispatchConfirmed not bound
!missing-selector! UIUpdateInfo::isPerformingLowLatencyPhases not bound
!missing-selector! UIUpdateInfo::modelTime not bound
!missing-selector! UIUpdateLink::addActionToPhase:handler: not bound
!missing-selector! UIUpdateLink::addActionToPhase:target:selector: not bound
!missing-selector! UIUpdateLink::addActionWithHandler: not bound
!missing-selector! UIUpdateLink::addActionWithTarget:selector: not bound
!missing-selector! UIUpdateLink::currentUpdateInfo not bound
!missing-selector! UIUpdateLink::isEnabled not bound
!missing-selector! UIUpdateLink::preferredFrameRateRange not bound
!missing-selector! UIUpdateLink::requiresContinuousUpdates not bound
!missing-selector! UIUpdateLink::setEnabled: not bound
!missing-selector! UIUpdateLink::setPreferredFrameRateRange: not bound
!missing-selector! UIUpdateLink::setRequiresContinuousUpdates: not bound
!missing-selector! UIUpdateLink::setWantsImmediatePresentation: not bound
!missing-selector! UIUpdateLink::setWantsLowLatencyEventDispatch: not bound
!missing-selector! UIUpdateLink::wantsImmediatePresentation not bound
!missing-selector! UIUpdateLink::wantsLowLatencyEventDispatch not bound
!missing-selector! UIViewController::preferredTransition not bound
!missing-selector! UIViewController::setPreferredTransition: not bound
!missing-selector! UIViewController::tab not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound
!missing-selector! UIZoomTransitionInteractionContext::location not bound
!missing-selector! UIZoomTransitionInteractionContext::velocity not bound
!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound
!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound
!missing-selector! UIZoomTransitionOptions::dimmingColor not bound
!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound
!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound
!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound
!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! UIActivityCollaborationModeRestriction not bound
!missing-type! UICalendarSelectionWeekOfYear not bound
!missing-type! UIDocumentViewControllerLaunchOptions not bound
!missing-type! UISearchTab not bound
!missing-type! UITab not bound
!missing-type! UITabBarControllerSidebar not bound
!missing-type! UITabGroup not bound
!missing-type! UITabSidebarItem not bound
!missing-type! UITabSidebarItemRequest not bound
!missing-type! UITabSidebarScrollTarget not bound
!missing-type! UITraitListEnvironment not bound
!missing-type! UIUpdateActionPhase not bound
!missing-type! UIUpdateInfo not bound
!missing-type! UIUpdateLink not bound
!missing-type! UIViewControllerTransition not bound
!missing-type! UIZoomTransitionAlignmentRectContext not bound
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElement not bound
!missing-selector! NSObject::accessibilityNextTextNavigationElementBlock not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElement not bound
!missing-selector! NSObject::accessibilityPreviousTextNavigationElementBlock not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityNextTextNavigationElementBlock: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElement: not bound
!missing-selector! NSObject::setAccessibilityPreviousTextNavigationElementBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UITextView::setWritingToolsBehavior: not bound
!missing-selector! UITextView::writingToolsBehavior not bound
!missing-enum! UITextFormattingViewControllerComponentSize not bound
!missing-field! NSTextKit1ListMarkerFormatDocumentOption not bound
!missing-field! UITextFormattingViewControllerDecreaseFontSizeChangeType not bound
!missing-field! UITextFormattingViewControllerDecreaseIndentationChangeType not bound
!missing-field! UITextFormattingViewControllerFontAttributesComponentKey not bound
!missing-field! UITextFormattingViewControllerFontChangeType not bound
!missing-field! UITextFormattingViewControllerFontPickerComponentKey not bound
!missing-field! UITextFormattingViewControllerFontPointSizeComponentKey not bound
!missing-field! UITextFormattingViewControllerFontSizeChangeType not bound
!missing-field! UITextFormattingViewControllerFontSizeComponentKey not bound
!missing-field! UITextFormattingViewControllerFormattingStyleChangeType not bound
!missing-field! UITextFormattingViewControllerFormattingStylesComponentKey not bound
!missing-field! UITextFormattingViewControllerHighlightBlue not bound
!missing-field! UITextFormattingViewControllerHighlightChangeType not bound
!missing-field! UITextFormattingViewControllerHighlightComponentKey not bound
!missing-field! UITextFormattingViewControllerHighlightDefault not bound
!missing-field! UITextFormattingViewControllerHighlightMint not bound
!missing-field! UITextFormattingViewControllerHighlightOrange not bound
!missing-field! UITextFormattingViewControllerHighlightPickerComponentKey not bound
!missing-field! UITextFormattingViewControllerHighlightPink not bound
!missing-field! UITextFormattingViewControllerHighlightPurple not bound
!missing-field! UITextFormattingViewControllerIncreaseFontSizeChangeType not bound
!missing-field! UITextFormattingViewControllerIncreaseIndentationChangeType not bound
!missing-field! UITextFormattingViewControllerLineHeightComponentKey not bound
!missing-field! UITextFormattingViewControllerLineHeightPointSizeChangeType not bound
!missing-field! UITextFormattingViewControllerListStylesComponentKey not bound
!missing-field! UITextFormattingViewControllerRemoveBoldChangeType not bound
!missing-field! UITextFormattingViewControllerRemoveItalicChangeType not bound
!missing-field! UITextFormattingViewControllerRemoveStrikethroughChangeType not bound
!missing-field! UITextFormattingViewControllerRemoveUnderlineChangeType not bound
!missing-field! UITextFormattingViewControllerSetBoldChangeType not bound
!missing-field! UITextFormattingViewControllerSetItalicChangeType not bound
!missing-field! UITextFormattingViewControllerSetStrikethroughChangeType not bound
!missing-field! UITextFormattingViewControllerSetUnderlineChangeType not bound
!missing-field! UITextFormattingViewControllerTextAlignmentAndJustificationComponentKey not bound
!missing-field! UITextFormattingViewControllerTextAlignmentCenter not bound
!missing-field! UITextFormattingViewControllerTextAlignmentChangeType not bound
!missing-field! UITextFormattingViewControllerTextAlignmentComponentKey not bound
!missing-field! UITextFormattingViewControllerTextAlignmentJustified not bound
!missing-field! UITextFormattingViewControllerTextAlignmentLeft not bound
!missing-field! UITextFormattingViewControllerTextAlignmentNatural not bound
!missing-field! UITextFormattingViewControllerTextAlignmentRight not bound
!missing-field! UITextFormattingViewControllerTextColorChangeType not bound
!missing-field! UITextFormattingViewControllerTextColorComponentKey not bound
!missing-field! UITextFormattingViewControllerTextIndentationComponentKey not bound
!missing-field! UITextFormattingViewControllerTextListChangeType not bound
!missing-field! UITextFormattingViewControllerTextListDecimal not bound
!missing-field! UITextFormattingViewControllerTextListDisc not bound
!missing-field! UITextFormattingViewControllerTextListHyphen not bound
!missing-field! UITextFormattingViewControllerTextListOther not bound
!missing-field! UITextFormattingViewControllerUndefinedChangeType not bound
!missing-protocol! UITextFormattingViewControllerDelegate not bound
!missing-protocol-member! UITextInput::insertAttributedText: not found
!missing-protocol-member! UITextInput::replaceRange:withAttributedText: not found
!missing-protocol-member! UITextViewDelegate::textView:didBeginFormattingWithViewController: not found
!missing-protocol-member! UITextViewDelegate::textView:didEndFormattingWithViewController: not found
!missing-protocol-member! UITextViewDelegate::textView:willBeginFormattingWithViewController: not found
!missing-protocol-member! UITextViewDelegate::textView:willEndFormattingWithViewController: not found
!missing-selector! UIBackgroundConfiguration::shadowProperties not bound
!missing-selector! UIListContentConfiguration::alpha not bound
!missing-selector! UIListContentConfiguration::setAlpha: not bound
!missing-selector! UIListContentImageProperties::resolvedStrokeColorForTintColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColorTransformer: not bound
!missing-selector! UIListContentImageProperties::setStrokeWidth: not bound
!missing-selector! UIListContentImageProperties::strokeColor not bound
!missing-selector! UIListContentImageProperties::strokeColorTransformer not bound
!missing-selector! UIListContentImageProperties::strokeWidth not bound
!missing-selector! UIShadowProperties::color not bound
!missing-selector! UIShadowProperties::offset not bound
!missing-selector! UIShadowProperties::opacity not bound
!missing-selector! UIShadowProperties::path not bound
!missing-selector! UIShadowProperties::radius not bound
!missing-selector! UIShadowProperties::setColor: not bound
!missing-selector! UIShadowProperties::setOffset: not bound
!missing-selector! UIShadowProperties::setOpacity: not bound
!missing-selector! UIShadowProperties::setPath: not bound
!missing-selector! UIShadowProperties::setRadius: not bound
!missing-selector! UITextFormattingViewController::configuration not bound
!missing-selector! UITextFormattingViewController::delegate not bound
!missing-selector! UITextFormattingViewController::formattingDescriptor not bound
!missing-selector! UITextFormattingViewController::init not bound
!missing-selector! UITextFormattingViewController::initWithConfiguration: not bound
!missing-selector! UITextFormattingViewController::setDelegate: not bound
!missing-selector! UITextFormattingViewController::setFormattingDescriptor: not bound
!missing-selector! UITextFormattingViewControllerChangeValue::changeType not bound
!missing-selector! UITextFormattingViewControllerChangeValue::color not bound
!missing-selector! UITextFormattingViewControllerChangeValue::font not bound
!missing-selector! UITextFormattingViewControllerChangeValue::formattingStyleKey not bound
!missing-selector! UITextFormattingViewControllerChangeValue::highlight not bound
!missing-selector! UITextFormattingViewControllerChangeValue::numberValue not bound
!missing-selector! UITextFormattingViewControllerChangeValue::textAlignment not bound
!missing-selector! UITextFormattingViewControllerChangeValue::textList not bound
!missing-selector! UITextFormattingViewControllerComponent::componentKey not bound
!missing-selector! UITextFormattingViewControllerComponent::initWithComponentKey:preferredSize: not bound
!missing-selector! UITextFormattingViewControllerComponent::preferredSize not bound
!missing-selector! UITextFormattingViewControllerComponentGroup::components not bound
!missing-selector! UITextFormattingViewControllerComponentGroup::initWithComponents: not bound
!missing-selector! UITextFormattingViewControllerConfiguration::fontPickerConfiguration not bound
!missing-selector! UITextFormattingViewControllerConfiguration::formattingStyles not bound
!missing-selector! UITextFormattingViewControllerConfiguration::groups not bound
!missing-selector! UITextFormattingViewControllerConfiguration::init not bound
!missing-selector! UITextFormattingViewControllerConfiguration::initWithGroups: not bound
!missing-selector! UITextFormattingViewControllerConfiguration::setFontPickerConfiguration: not bound
!missing-selector! UITextFormattingViewControllerConfiguration::setFormattingStyles: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::fonts not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::formattingStyleKey not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::highlights not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::init not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::initWithAttributes: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::initWithString:range: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::lineHeight not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setFonts: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setFormattingStyleKey: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setHighlights: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setLineHeight: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setStrikethroughPresent: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setTextAlignments: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setTextColors: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setTextLists: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::setUnderlinePresent: not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::strikethroughPresent not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::textAlignments not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::textColors not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::textLists not bound
!missing-selector! UITextFormattingViewControllerFormattingDescriptor::underlinePresent not bound
!missing-selector! UITextFormattingViewControllerFormattingStyle::attributes not bound
!missing-selector! UITextFormattingViewControllerFormattingStyle::initWithStyleKey:title:attributes: not bound
!missing-selector! UITextFormattingViewControllerFormattingStyle::styleKey not bound
!missing-selector! UITextFormattingViewControllerFormattingStyle::title not bound
!missing-selector! UITextView::setTextFormattingConfiguration: not bound
!missing-selector! UITextView::textFormattingConfiguration not bound
!missing-type! UIShadowProperties not bound
!missing-type! UITextFormattingViewController not bound
!missing-type! UITextFormattingViewControllerChangeValue not bound
!missing-type! UITextFormattingViewControllerComponent not bound
!missing-type! UITextFormattingViewControllerComponentGroup not bound
!missing-type! UITextFormattingViewControllerConfiguration not bound
!missing-type! UITextFormattingViewControllerFormattingDescriptor not bound
!missing-type! UITextFormattingViewControllerFormattingStyle not bound
!missing-enum! UIFocusItemDeferralMode not bound
!missing-enum! UIWritingToolsResultOptions not bound
!missing-protocol! UITabBarControllerSidebarAnimating not bound
!missing-protocol-member! UIFocusItem::focusItemDeferralMode not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:displayedViewControllersForTab:proposedViewControllers: not found
!missing-protocol-member! UITextInput::attributedTextInRange: not found
!missing-protocol-member! UITextInput::didDismissWritingTools not found
!missing-protocol-member! UITextInput::willPresentWritingTools not found
!missing-protocol-member! UITextInputTraits::allowedWritingToolsResultOptions not found
!missing-protocol-member! UITextInputTraits::setAllowedWritingToolsResultOptions: not found
!missing-selector! UITab::managingTabGroup not bound
!missing-selector! UITextView::allowedWritingToolsResultOptions not bound
!missing-selector! UITextView::setAllowedWritingToolsResultOptions: not bound
!missing-field! UISceneSystemProtectionDidChangeNotification not bound
!missing-selector! UIScene::systemProtectionManager not bound
!missing-selector! UISceneSystemProtectionManager::isUserAuthenticationEnabled not bound
!missing-type! UISceneSystemProtectionManager not bound

Просмотреть файл

@ -1271,3 +1271,7 @@
!incorrect-protocol-member! NSAccessibility::accessibilityUserInputLabels is REQUIRED and should be abstract
!incorrect-protocol-member! NSAccessibility::setAccessibilityAttributedUserInputLabels: is REQUIRED and should be abstract
!incorrect-protocol-member! NSAccessibility::setAccessibilityUserInputLabels: is REQUIRED and should be abstract
# introduced and deprecated in the same version
!missing-protocol-member! NSTextInputTraits::setWritingToolsAllowedInputOptions: not found
!missing-protocol-member! NSTextInputTraits::writingToolsAllowedInputOptions not found

Просмотреть файл

@ -1,135 +1,4 @@
!deprecated-attribute-missing! NSEPSImageRep missing a [Deprecated] attribute
!deprecated-attribute-missing! NSProgressIndicator::controlTint missing a [Deprecated] attribute
!deprecated-attribute-missing! NSProgressIndicator::isBezeled missing a [Deprecated] attribute
!deprecated-attribute-missing! NSProgressIndicator::setBezeled: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSProgressIndicator::setControlTint: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSShowAnimationEffect missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::delegate missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::initWithVoice: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::isSpeaking missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::setDelegate: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::setUsesFeedbackWindow: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::startSpeakingString: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::startSpeakingString:toURL: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::stopSpeaking missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizer::usesFeedbackWindow missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizerDelegate::speechSynthesizer:didFinishSpeaking: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizerDelegate::speechSynthesizer:willSpeakPhoneme: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSSpeechSynthesizerDelegate::speechSynthesizer:willSpeakWord:ofString: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSViewController::presentViewControllerInWidget: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSDocument::shouldRunSavePanelWithAccessoryView missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::configurationDictionary missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::setConfigurationFromDictionary: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::setShowsBaselineSeparator: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbar::showsBaselineSeparator missing a [Deprecated] attribute
!deprecated-attribute-missing! NSToolbarItem::allowsDuplicatesInToolbar missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::disableScreenUpdatesUntilFlush missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::setShowsResizeIndicator: missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::showsResizeIndicator missing a [Deprecated] attribute
!deprecated-attribute-missing! NSWindow::windowRef missing a [Deprecated] attribute
!extra-enum-value! Managed value 2 for NSWindowSharingType.ReadWrite not found in native headers
!missing-enum! NSCursorFrameResizeDirections not bound
!missing-enum! NSCursorFrameResizePosition not bound
!missing-enum! NSHorizontalDirections not bound
!missing-enum! NSSharingCollaborationMode not bound
!missing-enum! NSVerticalDirections not bound
!missing-enum! NSWritingToolsBehavior not bound
!missing-field! NSAdaptiveImageGlyphAttributeName not bound
!missing-field! NSTextHighlightColorSchemeAttributeName not bound
!missing-field! NSTextHighlightColorSchemeBlue not bound
!missing-field! NSTextHighlightColorSchemeDefault not bound
!missing-field! NSTextHighlightColorSchemeMint not bound
!missing-field! NSTextHighlightColorSchemeOrange not bound
!missing-field! NSTextHighlightColorSchemePink not bound
!missing-field! NSTextHighlightColorSchemePurple not bound
!missing-field! NSTextHighlightStyleAttributeName not bound
!missing-field! NSTextHighlightStyleDefault not bound
!missing-field! NSToolbarNewIndexKey not bound
!missing-protocol-member! NSOpenSavePanelDelegate::panel:didSelectType: not found
!missing-protocol-member! NSOpenSavePanelDelegate::panel:displayNameForType: not found
!missing-protocol-member! NSSharingServicePickerDelegate::sharingServicePickerCollaborationModeRestrictions: not found
!missing-protocol-member! NSTextInputClient::insertAdaptiveImageGlyph:replacementRange: not found
!missing-protocol-member! NSTextInputClient::supportsAdaptiveImageGlyph not found
!missing-protocol-member! NSTextInputTraits::mathExpressionCompletionType not found
!missing-protocol-member! NSTextInputTraits::setMathExpressionCompletionType: not found
!missing-protocol-member! NSTextInputTraits::setWritingToolsAllowedInputOptions: not found
!missing-protocol-member! NSTextInputTraits::setWritingToolsBehavior: not found
!missing-protocol-member! NSTextInputTraits::writingToolsAllowedInputOptions not found
!missing-protocol-member! NSTextInputTraits::writingToolsBehavior not found
!missing-protocol-member! NSTextViewDelegate::textView:writingToolsIgnoredRangesInEnclosingRange: not found
!missing-protocol-member! NSTextViewDelegate::textViewWritingToolsDidEnd: not found
!missing-protocol-member! NSTextViewDelegate::textViewWritingToolsWillBegin: not found
!missing-protocol-member! NSWindowDelegate::windowForSharingRequestFromWindow: not found
!missing-selector! +NSAdaptiveImageGlyph::contentType not bound
!missing-selector! +NSAttributedString::attributedStringWithAdaptiveImageGlyph:attributes: not bound
!missing-selector! +NSAttributedString::attributedStringWithAttachment:attributes: not bound
!missing-selector! +NSCursor::columnResizeCursor not bound
!missing-selector! +NSCursor::columnResizeCursorInDirections: not bound
!missing-selector! +NSCursor::frameResizeCursorFromPosition:inDirections: not bound
!missing-selector! +NSCursor::rowResizeCursor not bound
!missing-selector! +NSCursor::rowResizeCursorInDirections: not bound
!missing-selector! +NSCursor::zoomInCursor not bound
!missing-selector! +NSCursor::zoomOutCursor not bound
!missing-selector! +NSPopUpButton::popUpButtonWithMenu:target:action: not bound
!missing-selector! +NSPopUpButton::pullDownButtonWithImage:menu: not bound
!missing-selector! +NSPopUpButton::pullDownButtonWithTitle:image:menu: not bound
!missing-selector! +NSPopUpButton::pullDownButtonWithTitle:menu: not bound
!missing-selector! NSAdaptiveImageGlyph::contentDescription not bound
!missing-selector! NSAdaptiveImageGlyph::contentIdentifier not bound
!missing-selector! NSAdaptiveImageGlyph::imageContent not bound
!missing-selector! NSAdaptiveImageGlyph::initWithCoder: not bound
!missing-selector! NSAdaptiveImageGlyph::initWithImageContent: not bound
!missing-selector! NSAttributedString::prefersRTFDInRange: not bound
!missing-selector! NSDocument::savePanelShowsFileFormatsControl not bound
!missing-selector! NSPopUpButton::altersStateOfSelectedItem not bound
!missing-selector! NSPopUpButton::setAltersStateOfSelectedItem: not bound
!missing-selector! NSPopUpButton::setUsesItemFromMenu: not bound
!missing-selector! NSPopUpButton::usesItemFromMenu not bound
!missing-selector! NSSavePanel::currentContentType not bound
!missing-selector! NSSavePanel::setCurrentContentType: not bound
!missing-selector! NSSavePanel::setShowsContentTypes: not bound
!missing-selector! NSSavePanel::showsContentTypes not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertDismissButtonTitle not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertMessage not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertRecoverySuggestionButtonLaunchURL not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertRecoverySuggestionButtonTitle not bound
!missing-selector! NSSharingCollaborationModeRestriction::alertTitle not bound
!missing-selector! NSSharingCollaborationModeRestriction::disabledMode not bound
!missing-selector! NSSharingCollaborationModeRestriction::initWithDisabledMode: not bound
!missing-selector! NSSharingCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage: not bound
!missing-selector! NSSharingCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle: not bound
!missing-selector! NSSharingCollaborationModeRestriction::initWithDisabledMode:alertTitle:alertMessage:alertDismissButtonTitle:alertRecoverySuggestionButtonTitle:alertRecoverySuggestionButtonLaunchURL: not bound
!missing-selector! NSTextView::drawTextHighlightBackgroundForTextRange:origin: not bound
!missing-selector! NSTextView::highlight: not bound
!missing-selector! NSTextView::isWritingToolsActive not bound
!missing-selector! NSTextView::mathExpressionCompletionType not bound
!missing-selector! NSTextView::setMathExpressionCompletionType: not bound
!missing-selector! NSTextView::setTextHighlightAttributes: not bound
!missing-selector! NSTextView::textHighlightAttributes not bound
!missing-selector! NSToolbar::allowsDisplayModeCustomization not bound
!missing-selector! NSToolbar::itemIdentifiers not bound
!missing-selector! NSToolbar::removeItemWithItemIdentifier: not bound
!missing-selector! NSToolbar::setAllowsDisplayModeCustomization: not bound
!missing-selector! NSToolbar::setItemIdentifiers: not bound
!missing-selector! NSToolbarItem::isHidden not bound
!missing-selector! NSToolbarItem::setHidden: not bound
!missing-selector! NSWindow::beginDraggingSessionWithItems:event:source: not bound
!missing-selector! NSWindow::requestSharingOfWindow:completionHandler: not bound
!missing-selector! NSWindow::requestSharingOfWindowUsingPreview:title:completionHandler: not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! NSSharingCollaborationModeRestriction not bound
!missing-selector! NSTextView::setWritingToolsBehavior: not bound
!missing-selector! NSTextView::writingToolsBehavior not bound
!missing-selector! NSWindow::cascadingReferenceFrame not bound
!missing-field! NSTextKit1ListMarkerFormatDocumentOption not bound
!missing-protocol! NSViewContentSelectionInfo not bound
!missing-protocol-member! NSStandardKeyBindingResponding::showContextMenuForSelection: not found
!missing-selector! NSMenuItem::setSubtitle: not bound
!missing-selector! NSMenuItem::subtitle not bound
!missing-selector! NSResponder::contextMenuKeyDown: not bound
!missing-enum! NSWritingToolsResultOptions not bound
!missing-protocol-member! NSTextInputTraits::allowedWritingToolsResultOptions not found
!missing-protocol-member! NSTextInputTraits::setAllowedWritingToolsResultOptions: not found
!missing-selector! NSTextView::allowedWritingToolsResultOptions not bound
!missing-selector! NSTextView::setAllowedWritingToolsResultOptions: not bound

Просмотреть файл

@ -18,6 +18,8 @@
!missing-selector! NSObject::accessibilityDirectTouchOptions not bound
!missing-selector! NSObject::accessibilityElementsBlock not bound
!missing-selector! NSObject::accessibilityElementsHiddenBlock not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityFrameBlock not bound
!missing-selector! NSObject::accessibilityHeaderElementsBlock not bound
!missing-selector! NSObject::accessibilityHintBlock not bound
@ -54,6 +56,8 @@
!missing-selector! NSObject::setAccessibilityDirectTouchOptions: not bound
!missing-selector! NSObject::setAccessibilityElementsBlock: not bound
!missing-selector! NSObject::setAccessibilityElementsHiddenBlock: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! NSObject::setAccessibilityFrameBlock: not bound
!missing-selector! NSObject::setAccessibilityHeaderElementsBlock: not bound
!missing-selector! NSObject::setAccessibilityHintBlock: not bound
@ -129,6 +133,8 @@
!incorrect-protocol-member! UIFocusItem::frame is REQUIRED and should be abstract
!incorrect-protocol-member! UIFocusEnvironment::focusItemContainer is REQUIRED and should be abstract
!incorrect-protocol-member! UIFocusEnvironment::parentFocusEnvironment is REQUIRED and should be abstract
!incorrect-protocol-member! UIMutableTraits::listEnvironment is REQUIRED and should be abstract
!incorrect-protocol-member! UIMutableTraits::setListEnvironment: is REQUIRED and should be abstract
## not supported as per introspection, rdar filled: 42851110
!missing-protocol-conformance! NSAttributedString should conform to NSItemProviderReading (defined in 'NSAttributedString_ItemProvider' category)

Просмотреть файл

@ -1,222 +0,0 @@
!missing-enum! UICollectionLayoutListContentHuggingElements not bound
!missing-enum! UIColorProminence not bound
!missing-enum! UIListEnvironment not bound
!missing-enum! UITabBarControllerMode not bound
!missing-enum! UITableViewContentHuggingElements not bound
!missing-enum! UITabPlacement not bound
!missing-enum! UITextMathExpressionCompletionType not bound
!missing-field! NSAdaptiveImageGlyphAttributeName not bound
!missing-field! NSTextHighlightColorSchemeAttributeName not bound
!missing-field! NSTextHighlightColorSchemeBlue not bound
!missing-field! NSTextHighlightColorSchemeDefault not bound
!missing-field! NSTextHighlightColorSchemeMint not bound
!missing-field! NSTextHighlightColorSchemeOrange not bound
!missing-field! NSTextHighlightColorSchemePink not bound
!missing-field! NSTextHighlightColorSchemePurple not bound
!missing-field! NSTextHighlightStyleAttributeName not bound
!missing-field! NSTextHighlightStyleDefault not bound
!missing-protocol-member! UIFocusItem::isTransparentFocusItem not found
!missing-protocol-member! UIMutableTraits::listEnvironment not found
!missing-protocol-member! UIMutableTraits::setListEnvironment: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:didSelectTab:previousTab: not found
!missing-protocol-member! UITabBarControllerDelegate::tabBarController:shouldSelectTab: not found
!missing-protocol-member! UITextInput::insertAdaptiveImageGlyph:replacementRange: not found
!missing-protocol-member! UITextInput::setSupportsAdaptiveImageGlyph: not found
!missing-protocol-member! UITextInput::supportsAdaptiveImageGlyph not found
!missing-protocol-member! UITextInputTraits::mathExpressionCompletionType not found
!missing-protocol-member! UITextInputTraits::setMathExpressionCompletionType: not found
!missing-selector! +NSAdaptiveImageGlyph::contentType not bound
!missing-selector! +NSAttributedString::attributedStringWithAdaptiveImageGlyph:attributes: not bound
!missing-selector! +NSAttributedString::attributedStringWithAttachment:attributes: not bound
!missing-selector! +UIBackgroundConfiguration::listCellConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listFooterConfiguration not bound
!missing-selector! +UIBackgroundConfiguration::listHeaderConfiguration not bound
!missing-selector! +UIListContentConfiguration::footerConfiguration not bound
!missing-selector! +UIListContentConfiguration::headerConfiguration not bound
!missing-selector! +UITraitCollection::traitCollectionWithListEnvironment: not bound
!missing-selector! +UIUpdateActionPhase::afterCADisplayLinkDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::afterEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterLowLatencyCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::afterLowLatencyEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::afterUpdateComplete not bound
!missing-selector! +UIUpdateActionPhase::afterUpdateScheduled not bound
!missing-selector! +UIUpdateActionPhase::beforeCADisplayLinkDispatch not bound
!missing-selector! +UIUpdateActionPhase::beforeCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::beforeEventDispatch not bound
!missing-selector! +UIUpdateActionPhase::beforeLowLatencyCATransactionCommit not bound
!missing-selector! +UIUpdateActionPhase::beforeLowLatencyEventDispatch not bound
!missing-selector! +UIUpdateInfo::currentUpdateInfoForView: not bound
!missing-selector! +UIUpdateInfo::currentUpdateInfoForWindowScene: not bound
!missing-selector! +UIUpdateLink::updateLinkForView: not bound
!missing-selector! +UIUpdateLink::updateLinkForView:actionHandler: not bound
!missing-selector! +UIUpdateLink::updateLinkForView:actionTarget:selector: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene:actionHandler: not bound
!missing-selector! +UIUpdateLink::updateLinkForWindowScene:actionTarget:selector: not bound
!missing-selector! NSAdaptiveImageGlyph::contentDescription not bound
!missing-selector! NSAdaptiveImageGlyph::contentIdentifier not bound
!missing-selector! NSAdaptiveImageGlyph::imageContent not bound
!missing-selector! NSAdaptiveImageGlyph::initWithCoder: not bound
!missing-selector! NSAdaptiveImageGlyph::initWithImageContent: not bound
!missing-selector! NSAttributedString::prefersRTFDInRange: not bound
!missing-selector! UICollectionLayoutListConfiguration::contentHuggingElements not bound
!missing-selector! UICollectionLayoutListConfiguration::setContentHuggingElements: not bound
!missing-selector! UICollectionView::indexPathForSupplementaryView: not bound
!missing-selector! UIColor::colorWithProminence: not bound
!missing-selector! UIColor::prominence not bound
!missing-selector! UISearchTab::initWithViewControllerProvider: not bound
!missing-selector! UITab::allowsHiding not bound
!missing-selector! UITab::badgeValue not bound
!missing-selector! UITab::identifier not bound
!missing-selector! UITab::image not bound
!missing-selector! UITab::initWithTitle:image:identifier:viewControllerProvider: not bound
!missing-selector! UITab::isHidden not bound
!missing-selector! UITab::isHiddenByDefault not bound
!missing-selector! UITab::parent not bound
!missing-selector! UITab::preferredPlacement not bound
!missing-selector! UITab::setAllowsHiding: not bound
!missing-selector! UITab::setBadgeValue: not bound
!missing-selector! UITab::setHidden: not bound
!missing-selector! UITab::setHiddenByDefault: not bound
!missing-selector! UITab::setImage: not bound
!missing-selector! UITab::setPreferredPlacement: not bound
!missing-selector! UITab::setSubtitle: not bound
!missing-selector! UITab::setTitle: not bound
!missing-selector! UITab::setUserInfo: not bound
!missing-selector! UITab::subtitle not bound
!missing-selector! UITab::tabBarController not bound
!missing-selector! UITab::title not bound
!missing-selector! UITab::userInfo not bound
!missing-selector! UITab::viewController not bound
!missing-selector! UITabBarController::compactTabIdentifiers not bound
!missing-selector! UITabBarController::customizationIdentifier not bound
!missing-selector! UITabBarController::initWithTabs: not bound
!missing-selector! UITabBarController::isTabBarHidden not bound
!missing-selector! UITabBarController::mode not bound
!missing-selector! UITabBarController::selectedTab not bound
!missing-selector! UITabBarController::setCompactTabIdentifiers: not bound
!missing-selector! UITabBarController::setCustomizationIdentifier: not bound
!missing-selector! UITabBarController::setMode: not bound
!missing-selector! UITabBarController::setSelectedTab: not bound
!missing-selector! UITabBarController::setTabBarHidden: not bound
!missing-selector! UITabBarController::setTabBarHidden:animated: not bound
!missing-selector! UITabBarController::setTabs: not bound
!missing-selector! UITabBarController::setTabs:animated: not bound
!missing-selector! UITabBarController::tabForIdentifier: not bound
!missing-selector! UITabBarController::tabs not bound
!missing-selector! UITabGroup::allowsReordering not bound
!missing-selector! UITabGroup::children not bound
!missing-selector! UITabGroup::defaultChildIdentifier not bound
!missing-selector! UITabGroup::displayOrder not bound
!missing-selector! UITabGroup::displayOrderIdentifiers not bound
!missing-selector! UITabGroup::initWithTitle:image:identifier:children:viewControllerProvider: not bound
!missing-selector! UITabGroup::managingNavigationController not bound
!missing-selector! UITabGroup::selectedChild not bound
!missing-selector! UITabGroup::setAllowsReordering: not bound
!missing-selector! UITabGroup::setChildren: not bound
!missing-selector! UITabGroup::setDefaultChildIdentifier: not bound
!missing-selector! UITabGroup::setDisplayOrderIdentifiers: not bound
!missing-selector! UITabGroup::setManagingNavigationController: not bound
!missing-selector! UITabGroup::setSelectedChild: not bound
!missing-selector! UITabGroup::tabForIdentifier: not bound
!missing-selector! UITableView::contentHuggingElements not bound
!missing-selector! UITableView::setContentHuggingElements: not bound
!missing-selector! UITextView::drawTextHighlightBackgroundForTextRange:origin: not bound
!missing-selector! UITextView::setTextHighlightAttributes: not bound
!missing-selector! UITextView::textHighlightAttributes not bound
!missing-selector! UITraitCollection::listEnvironment not bound
!missing-selector! UIUpdateInfo::completionDeadlineTime not bound
!missing-selector! UIUpdateInfo::estimatedPresentationTime not bound
!missing-selector! UIUpdateInfo::isImmediatePresentationExpected not bound
!missing-selector! UIUpdateInfo::isLowLatencyEventDispatchConfirmed not bound
!missing-selector! UIUpdateInfo::isPerformingLowLatencyPhases not bound
!missing-selector! UIUpdateInfo::modelTime not bound
!missing-selector! UIUpdateLink::addActionToPhase:handler: not bound
!missing-selector! UIUpdateLink::addActionToPhase:target:selector: not bound
!missing-selector! UIUpdateLink::addActionWithHandler: not bound
!missing-selector! UIUpdateLink::addActionWithTarget:selector: not bound
!missing-selector! UIUpdateLink::currentUpdateInfo not bound
!missing-selector! UIUpdateLink::isEnabled not bound
!missing-selector! UIUpdateLink::preferredFrameRateRange not bound
!missing-selector! UIUpdateLink::requiresContinuousUpdates not bound
!missing-selector! UIUpdateLink::setEnabled: not bound
!missing-selector! UIUpdateLink::setPreferredFrameRateRange: not bound
!missing-selector! UIUpdateLink::setRequiresContinuousUpdates: not bound
!missing-selector! UIUpdateLink::setWantsImmediatePresentation: not bound
!missing-selector! UIUpdateLink::setWantsLowLatencyEventDispatch: not bound
!missing-selector! UIUpdateLink::wantsImmediatePresentation not bound
!missing-selector! UIUpdateLink::wantsLowLatencyEventDispatch not bound
!missing-selector! UIViewController::tab not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! UISearchTab not bound
!missing-type! UITab not bound
!missing-type! UITabGroup not bound
!missing-type! UITraitListEnvironment not bound
!missing-type! UIUpdateActionPhase not bound
!missing-type! UIUpdateInfo not bound
!missing-type! UIUpdateLink not bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-field! UIAccessibilityCustomActionCategoryEdit not bound
!missing-selector! +UIViewControllerTransition::coverVerticalTransition not bound
!missing-selector! +UIViewControllerTransition::crossDissolveTransition not bound
!missing-selector! +UIViewControllerTransition::flipHorizontalTransition not bound
!missing-selector! +UIViewControllerTransition::partialCurlTransition not bound
!missing-selector! +UIViewControllerTransition::zoomWithOptions:sourceViewProvider: not bound
!missing-selector! NSObject::accessibilityExpandedStatus not bound
!missing-selector! NSObject::accessibilityExpandedStatusBlock not bound
!missing-selector! NSObject::accessibilityHitTest:withEvent: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatus: not bound
!missing-selector! NSObject::setAccessibilityExpandedStatusBlock: not bound
!missing-selector! UIAccessibilityCustomAction::category not bound
!missing-selector! UIAccessibilityCustomAction::setCategory: not bound
!missing-selector! UIViewController::preferredTransition not bound
!missing-selector! UIViewController::setPreferredTransition: not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::sourceView not bound
!missing-selector! UIZoomTransitionAlignmentRectContext::zoomedViewController not bound
!missing-selector! UIZoomTransitionInteractionContext::location not bound
!missing-selector! UIZoomTransitionInteractionContext::velocity not bound
!missing-selector! UIZoomTransitionInteractionContext::willBegin not bound
!missing-selector! UIZoomTransitionOptions::alignmentRectProvider not bound
!missing-selector! UIZoomTransitionOptions::dimmingColor not bound
!missing-selector! UIZoomTransitionOptions::dimmingVisualEffect not bound
!missing-selector! UIZoomTransitionOptions::interactiveDismissShouldBegin not bound
!missing-selector! UIZoomTransitionOptions::setAlignmentRectProvider: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingColor: not bound
!missing-selector! UIZoomTransitionOptions::setDimmingVisualEffect: not bound
!missing-selector! UIZoomTransitionOptions::setInteractiveDismissShouldBegin: not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::sourceViewController not bound
!missing-selector! UIZoomTransitionSourceViewProviderContext::zoomedViewController not bound
!missing-type! UIViewControllerTransition not bound
!missing-type! UIZoomTransitionAlignmentRectContext not bound
!missing-type! UIZoomTransitionInteractionContext not bound
!missing-type! UIZoomTransitionOptions not bound
!missing-type! UIZoomTransitionSourceViewProviderContext not bound
!missing-field! NSTextKit1ListMarkerFormatDocumentOption not bound
!missing-protocol-member! UITextInput::insertAttributedText: not found
!missing-protocol-member! UITextInput::replaceRange:withAttributedText: not found
!missing-selector! UIBackgroundConfiguration::shadowProperties not bound
!missing-selector! UIListContentConfiguration::alpha not bound
!missing-selector! UIListContentConfiguration::setAlpha: not bound
!missing-selector! UIListContentImageProperties::resolvedStrokeColorForTintColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColor: not bound
!missing-selector! UIListContentImageProperties::setStrokeColorTransformer: not bound
!missing-selector! UIListContentImageProperties::setStrokeWidth: not bound
!missing-selector! UIListContentImageProperties::strokeColor not bound
!missing-selector! UIListContentImageProperties::strokeColorTransformer not bound
!missing-selector! UIListContentImageProperties::strokeWidth not bound
!missing-selector! UIShadowProperties::color not bound
!missing-selector! UIShadowProperties::offset not bound
!missing-selector! UIShadowProperties::opacity not bound
!missing-selector! UIShadowProperties::path not bound
!missing-selector! UIShadowProperties::radius not bound
!missing-selector! UIShadowProperties::setColor: not bound
!missing-selector! UIShadowProperties::setOffset: not bound
!missing-selector! UIShadowProperties::setOpacity: not bound
!missing-selector! UIShadowProperties::setPath: not bound
!missing-selector! UIShadowProperties::setRadius: not bound
!missing-type! UIShadowProperties not bound
!missing-enum! UIFocusItemDeferralMode not bound
!missing-protocol-member! UIFocusItem::focusItemDeferralMode not found
!missing-protocol-member! UITextInput::attributedTextInRange: not found
!missing-selector! UITab::managingTabGroup not bound

Просмотреть файл

@ -1,19 +1,8 @@
!missing-field! NSAdaptiveImageGlyphAttributeName not bound
!missing-field! NSTextHighlightColorSchemeAttributeName not bound
!missing-field! NSTextHighlightColorSchemeBlue not bound
!missing-field! NSTextHighlightColorSchemeDefault not bound
!missing-field! NSTextHighlightColorSchemeMint not bound
!missing-field! NSTextHighlightColorSchemeOrange not bound
!missing-field! NSTextHighlightColorSchemePink not bound
!missing-field! NSTextHighlightColorSchemePurple not bound
!missing-field! NSTextHighlightStyleAttributeName not bound
!missing-field! NSTextHighlightStyleDefault not bound
!missing-protocol! UIItemProviderReadingAugmentationProviding not bound
!missing-protocol-member! NSTextAttachmentLayout::attachmentBoundsForAttributes:location:textContainer:proposedLineFragment:position: not found
!missing-protocol-member! NSTextAttachmentLayout::imageForBounds:attributes:location:textContainer: not found
!missing-selector! +NSAttributedString::attributedStringWithAttachment: not bound
!missing-selector! +NSAttributedString::attributedStringWithAttachment:attributes: not bound
!missing-selector! NSAttributedString::prefersRTFDInRange: not bound
!missing-selector! NSMutableParagraphStyle::setTextLists: not bound
!missing-selector! NSMutableParagraphStyle::textLists not bound
!missing-selector! NSParagraphStyle::textLists not bound
@ -31,9 +20,7 @@
!missing-selector! NSTextAttachment::setImage: not bound
!missing-selector! NSTextAttachment::setLineLayoutPadding: not bound
!missing-type! NSTextAttachment not bound
!missing-enum! UIAccessibilityExpandedStatus not bound
!missing-enum! NSTextListOptions not bound
!missing-field! NSTextKit1ListMarkerFormatDocumentOption not bound
!missing-field! NSTextListMarkerBox not bound
!missing-field! NSTextListMarkerCheck not bound
!missing-field! NSTextListMarkerCircle not bound
@ -52,13 +39,6 @@
!missing-field! NSTextListMarkerUppercaseLatin not bound
!missing-field! NSTextListMarkerUppercaseRoman not bound
!missing-protocol! NSTextLocation not bound
!missing-selector! +NSAdaptiveImageGlyph::contentType not bound
!missing-selector! +NSAttributedString::attributedStringWithAdaptiveImageGlyph:attributes: not bound
!missing-selector! NSAdaptiveImageGlyph::contentDescription not bound
!missing-selector! NSAdaptiveImageGlyph::contentIdentifier not bound
!missing-selector! NSAdaptiveImageGlyph::imageContent not bound
!missing-selector! NSAdaptiveImageGlyph::initWithCoder: not bound
!missing-selector! NSAdaptiveImageGlyph::initWithImageContent: not bound
!missing-selector! NSTextList::initWithCoder: not bound
!missing-selector! NSTextList::initWithMarkerFormat:options: not bound
!missing-selector! NSTextList::initWithMarkerFormat:options:startingItemNumber: not bound
@ -79,8 +59,6 @@
!missing-selector! NSTextRange::location not bound
!missing-selector! NSTextRange::textRangeByFormingUnionWithTextRange: not bound
!missing-selector! NSTextRange::textRangeByIntersectingWithTextRange: not bound
!missing-type! NSAdaptiveImageGlyph not bound
!missing-type! NSTextList not bound
!missing-type! NSTextRange not bound
!missing-protocol! UIItemProviderReadingAugmentationProviding not bound
!missing-enum! UIAxis not bound