如何制作宏?

时间:2013-12-09 16:06:06

标签: ios macros

我想将此行添加到Constants.h中,我想在我的应用中的任何地方调用它。

[[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0

我已经完成了跟随和使用,但我完全不知道如何制作它?

#define IS_IPHONE_5 ( fabs( ( double )[ [ UIScreen mainScreen ] bounds ].size.height - ( double )568 ) < DBL_EPSILON )

感谢。

1 个答案:

答案 0 :(得分:1)

#define IS_IOS_7 ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)