수색…


iOS 8 이상

스위프트 3 :

let minimumVersion = OperatingSystemVersion(majorVersion: 8, minorVersion: 1, patchVersion: 2)
if ProcessInfo().isOperatingSystemAtLeast(minimumVersion) {
    //current version is >= (8.1.2)
} else {
    //current version is < (8.1.2)
}

버전 비교

let minimumVersionString = "3.1.3"
let versionComparison = UIDevice.current.systemVersion.compare(minimumVersionString, options: .numeric)
switch versionComparison {
    case .orderedSame, .orderedDescending:
        //current version is >= (3.1.3)
        break
    case .orderedAscending:
        //current version is < (3.1.3)
        fallthrough
    default:
        break;
}

목표 -C

NSString *version = @"3.1.3"; 
NSString *currentVersion = @"3.1.1";
NSComparisonResult result = [currentVersion compare:version options:NSNumericSearch];
switch(result){
  case: NSOrderedAscending:
        //less than the current version
  break;
  case: NSOrderedDescending:
  case: NSOrderedSame:
       // equal or greater than the current version
  break;
}

Swift 2.0 이상

if #available(iOS 9, *) {
  // iOS 9
} else {
  // iOS 8 or earlier
}

기기 iOS 버전

이것은 현재 시스템 버전을 제공합니다.

목표 -C

NSString *version = [[UIDevice currentDevice] systemVersion]

빠른

let version = UIDevice.currentDevice().systemVersion

스위프트 3

let version = UIDevice.current.systemVersion


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow