可能重复:
Check iPhone iOS Version
我正在尝试设置一些在iOS 5.0.1上与iOS 5.1及更高版本不同的代码。是否有if语句来确定它?
答案 0 :(得分:0)
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
答案 1 :(得分:0)
if ( [[[UIDevice currentDevice] systemVersion] floatValue] == 5.0)
{
// Do something
}
else if ( [[[UIDevice currentDevice] systemVersion] floatValue] == 5.1)
{
// Do something
}
else
{
// Do something
}