DirTy™의 하루일과/DirTy™의 가당찮은iOS

[IOS] ios버전 확인하기

DirTy™ 2014. 8. 22. 17:11

iOS 6.0버전도 대응해 달라고 하여 찾아보았음.

아래와 같은 방식으로 체크하면 된다.

    // 버전 체크

    BOOL bCheckVer = ([[[UIDevice currentDevice] systemVersion] compare:@"7.0" options:NSNumericSearch] == NSOrderedDescending);

    if(bCheckVer) {

        displayOption = IOS7Next;

    } else {

        displayOption = IOS7PREV;

    }