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

来源:互联网 发布:手机云端软件 编辑:程序博客网 时间:2024/06/07 09:32

判断系统是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]
0 0