0

可能重复:
检查 iPhone iOS 版本

我正在尝试设置一些在 iOS 5.0.1 上与 iOS 5.1 及更高版本不同的代码。是否有 if 语句来确定它?

4

2 回答 2

0
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
于 2012-06-02T23:27:25.160 回答
0
   if ( [[[UIDevice currentDevice] systemVersion] floatValue] == 5.0)
{
// Do something
}


else if ( [[[UIDevice currentDevice] systemVersion] floatValue] == 5.1)
{
// Do something
}
else
{
// Do something
}
于 2012-06-02T23:28:06.430 回答