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