确定iOS的版本

时间:2012-06-02 23:25:21

标签: iphone ios xcode

  

可能重复:
  Check iPhone iOS Version

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

2 个答案:

答案 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
}