OperatingSystem.IsIOSVersionAtLeast(Int32, Int32, Int32) Method

Definition

Checks if the iOS/MacCatalyst version (returned by libobjc.get_operatingSystemVersion) is greater than or equal to the specified version. This method can be used to guard APIs that were added in the specified iOS version.

C#
public static bool IsIOSVersionAtLeast(int major, int minor = 0, int build = 0);
C#
[System.Runtime.Versioning.SupportedOSPlatformGuard("maccatalyst")]
public static bool IsIOSVersionAtLeast(int major, int minor = 0, int build = 0);

Parameters

major
Int32

The major release number.

minor
Int32

The minor release number.

build
Int32

The build release number.

Returns

true if the current application is running on an iOS/MacCatalyst version that is at least what was specified in the parameters; false otherwise.

Attributes

Applies to

Prodotto Versioni
.NET 5, 6, 7, 8, 9