宏指令
#ifdef
__IPHONE_5_0 //5.0 or higher
- (void) newMethod;
#else
- (void)oldMethod;
#endif
判斷代碼
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if(version >= 3.0){
執(zhí)行代碼
}
#ifdef
__IPHONE_5_0 //5.0 or higher
- (void) newMethod;
#else
- (void)oldMethod;
#endif
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if(version >= 3.0){
執(zhí)行代碼
}