Skip to content

Instantly share code, notes, and snippets.

@vs-mobiletools-engineering-service2
Created August 29, 2022 13:46
Show Gist options
  • Save vs-mobiletools-engineering-service2/b5e472498c9f3379de1fbb26cb7631b2 to your computer and use it in GitHub Desktop.
Save vs-mobiletools-engineering-service2/b5e472498c9f3379de1fbb26cb7631b2 to your computer and use it in GitHub Desktop.
previous-api-comparison/ios-api-diff.md
title description author ms.author ms.date ms.topic ms.assetid ms.prod
Xamarin.iOS SDK API diff
List of API changes for Xamarin.iOS.
spouliot
sepoulio
8/29/2022
article
f7934223-2a8c-d5d4-788f-79d2f8610aa7
xamarin

Xamarin.iOS SDK API diff

Namespace UIKit

Type Changed: UIKit.NSTextListElement

Removed constructor:

public NSTextListElement (NSTextListElement parent, NSTextList textList, Foundation.NSAttributedString contents, Foundation.NSDictionary<Foundation.NSString,Foundation.NSObject> markerAttributes, NSTextListElement[] children);

Added constructor:

public NSTextListElement (NSTextListElement parent, NSTextList textList, Foundation.NSAttributedString contents, Foundation.NSDictionary markerAttributes, NSTextListElement[] children);

Removed property:

public virtual Foundation.NSDictionary<Foundation.NSString,Foundation.NSObject> MarkerAttributes { get; }

Added property:

public virtual Foundation.NSDictionary WeakMarkerAttributes { get; }

Removed method:

public static NSTextListElement Create (Foundation.NSAttributedString contents, Foundation.NSDictionary<Foundation.NSString,Foundation.NSObject> markerAttributes, NSTextList textList, NSTextListElement[] children);

Added method:

public static NSTextListElement Create (Foundation.NSAttributedString contents, Foundation.NSDictionary markerAttributes, NSTextList textList, NSTextListElement[] children);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment