Skip to content

Instantly share code, notes, and snippets.

@vs-mobiletools-engineering-service2
Created August 3, 2022 16:35
Show Gist options
  • Save vs-mobiletools-engineering-service2/873307e4fad4ef4e5b486dc1fe705137 to your computer and use it in GitHub Desktop.
Save vs-mobiletools-engineering-service2/873307e4fad4ef4e5b486dc1fe705137 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/3/2022
article
f7934223-2a8c-d5d4-788f-79d2f8610aa7
xamarin

Xamarin.iOS SDK API diff

Namespace CoreText

Type Changed: CoreText.CTFontOptions

Added value:

PreventAutoDownload = 2,

Namespace StoreKit

Type Changed: StoreKit.SKANError

Added value:

ImpressionTooShort = 11,

Type Changed: StoreKit.SKAdImpression

Added constructor:

public SKAdImpression (Foundation.NSNumber sourceAppStoreItemIdentifier, Foundation.NSNumber advertisedAppStoreItemIdentifier, string adNetworkIdentifier, Foundation.NSNumber adCampaignIdentifier, string adImpressionIdentifier, Foundation.NSNumber timestamp, string signature, string version);

Type Changed: StoreKit.SKOverlayAppConfiguration

Added method:

public virtual void SetAdImpression (SKAdImpression impression);

Type Changed: StoreKit.SKStoreProductViewController

Added methods:

public virtual void LoadProduct (Foundation.NSDictionary parameters, SKAdImpression impression, System.Action<System.Boolean,Foundation.NSError> callback);
public void LoadProduct (StoreProductParameters parameters, SKAdImpression impression, System.Action<System.Boolean,Foundation.NSError> callback);
public virtual System.Threading.Tasks.Task<System.Tuple<System.Boolean,Foundation.NSError>> LoadProductAsync (Foundation.NSDictionary parameters, SKAdImpression impression);
public System.Threading.Tasks.Task<System.Tuple<System.Boolean,Foundation.NSError>> LoadProductAsync (StoreProductParameters parameters, SKAdImpression impression);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment