如何获取iPhone 设备版本号?
2016-07-08 本文已影响21人
zcaaron
宏指令
#ifdef
__IPHONE_5_0 //5.0 or higher
- (void) newMethod;
#else
- (void)oldMethod;
#endif
判断代码
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if(version >= 3.0){
执行代码
}