iOS小技巧 判断手机系统版本等

判断系统是iOS7或者更高的版本

#define kiOS7orLater  ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7)

三原色快捷设置

#define KRGBAColor  [UIColor colorWithRed:(r/255.0) green:(g/255.0) blue:(b/255.0) alpha:1.0]

你可能感兴趣的:(iOS小技巧 判断手机系统版本等)