IOSVersion

data class IOSVersion(val major: Int, val minor: Int = 0, val patch: Int = 0) : Comparable<IOSVersion>

Wrapper for the iOS OS Version

Constructors

Link copied to clipboard
constructor(major: Int, minor: Int = 0, patch: Int = 0)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val major: Int

The major version of the OS

Link copied to clipboard
val minor: Int = 0

The minor version of the OS

Link copied to clipboard
val patch: Int = 0

The patch version of the OS

Functions

Link copied to clipboard
open operator override fun compareTo(other: IOSVersion): Int