diff --git a/src/Foundation/NSAttributedStringDocumentAttributes.cs b/src/Foundation/NSAttributedStringDocumentAttributes.cs index 373fefad1ea4..15eb9851ab95 100644 --- a/src/Foundation/NSAttributedStringDocumentAttributes.cs +++ b/src/Foundation/NSAttributedStringDocumentAttributes.cs @@ -235,10 +235,10 @@ public NSUrl? ReadAccessUrl { #if NET [SupportedOSPlatform ("macos")] [SupportedOSPlatform ("ios13.0")] - [SupportedOSPlatform ("maccatalyst13.1")] + [SupportedOSPlatform ("maccatalyst")] [UnsupportedOSPlatform ("tvos")] #else - [Mac (10, 15), iOS (13, 0), MacCatalyst (13, 1), NoTV, NoWatch] + [Mac (10, 15), iOS (13, 0), NoTV, NoWatch] #endif public string? DocumentReading { get { diff --git a/src/appkit.cs b/src/appkit.cs index 103ebaf834d5..7553e9a2ebf1 100644 --- a/src/appkit.cs +++ b/src/appkit.cs @@ -28145,6 +28145,11 @@ interface NSNibControlConnector { [NoMacCatalyst, Mac (14, 0)] [BaseType (typeof (NSView))] interface NSTextInsertionIndicator { + + [DesignatedInitializer] + [Export ("initWithFrame:")] + NativeHandle Constructor (CGRect frameRect); + [Export ("displayMode", ArgumentSemantic.Assign)] NSTextInsertionIndicatorDisplayMode DisplayMode { get; set; } diff --git a/src/xkit.cs b/src/xkit.cs index 381478760656..ffc04664a4c6 100644 --- a/src/xkit.cs +++ b/src/xkit.cs @@ -4443,7 +4443,7 @@ interface NSAttributedStringDocumentReadingOptionKey { // comres from webkit [Mac (10, 15), iOS (13, 0), MacCatalyst (13, 1), NoTV, NoWatch] - [Field ("NSReadAccessURLDocumentOption")] + [Field ("NSReadAccessURLDocumentOption", "WebKit")] NSString NSReadAccessUrlDocumentOption { get; } }