iOS中的Availability.h头文件

在预编译文件:prefix.pch中


#import 

#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif

#ifdef __OBJC__
    #import 
    #import 
#endif


#ifdef DEBUG
#define NSLog(...) NSLog(__VA_ARGS__)
#define debugMethod() NSLog(@"%s", __func__)
#else
#define NSLog(...)
#define debugMethod()
#endif

有一个头文件:Availability.h,这个头文件的作用是判断iOS系统的版本可用性。

你可能感兴趣的:(iOS)