「iOS入門」swiftを利用してシステムバージョン情報を検査するサンプルコード
1.稼働中のシステムのバージョン番号を取得
let version = UIDevice.currentDevice().systemVersion
// 例: 7.1.2
2.バージョン番号を比較
let flag = version.compare(“8.0.0", options: NSStringCompareOptions.NumericSearch)
case OrderedAscending
case OrderedSame
case OrderedDescending
3.判断処理
if flag == .OrderedAscending {
// 比較値よりも小さい
} else {
// 比較値より等しい、以上
}