OSのバージョンは以下のコードで取得できます。
[[UIDevice currentDevice] systemVersion];
[UIDevice currentDevice]でUIDeviceクラスのインスタンスを取得し、systemVersionプロパティでOSのバージョンを取得しています。
バージョン毎に処理を振り分け
float osVersion = [[[UIDevice currentDevice] systemVersion] floatValue];
if(osVersion >= 6.0f) { //iOS6以降
NSLog(@"iOS%f", osVersion);
}
else if (osVersion < 6.0f && osVersion >= 5.0f) { //iOS5.x.x
NSLog(@"iOS%f", osVersion);
}
else { //iOS4 以下
NSLog(@"iOS%f", osVersion);
}
0 件のコメント:
コメントを投稿