Structure
OperatingSystemVersion
A structure that contains version information about the currently executing operating system, including major, minor, and patch version numbers.
Declaration
宣言
struct OperatingSystemVersion
Overview
概要
Use the ProcessInfo
property operatingSystemVersion
to fetch an instance of this type. You can also pass this type to isOperatingSystemAtLeast(_:)
to determine whether the current operating system version is the same or later than the given value.
Topics
話題
Creating an Operating System Version
オペレーティングシステムバージョン構造体を作成する
init()
Creates an empty operating system version.
空のオペレーティングシステムバージョン構造体を作成します。
Version Components
バージョン構成要素
var majorVersion: Int
The major release number, such as 10 in version 10.9.3.
メジャーリリース番号、たとえばバージョン10.9.3での10。
var minorVersion: Int
The minor release number, such as 9 in version 10.9.3.
マイナーリリース番号、たとえばバージョン10.9.3での9。
var patchVersion: Int
The update release number, such as 3 in version 10.9.3.
アップデートリリース番号、たとえばバージョン10.9.3での3。