| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // macro.h
- // UU_Ent
- //
- // Created by liujl on 2019/4/30.
- // Copyright © 2019 UAS. All rights reserved.
- //
- #ifndef macro_h
- #define macro_h
- //日志输出
- #ifdef DEBUG
- #define DLog(...) NSLog(__VA_ARGS__)
- #else
- #define DLog(...)
- #endif
- //当前控制器的宽高度
- #define self_width self.view.frame.size.width
- #define self_height self.view.frame.size.height
- //颜色
- #define HexColor(h) [UIColor colorWithHexString:(h)]
- #define RGB(r, g, b) [UIColor colorWithRed:((r) / 255.0) green:((g) / 255.0) blue:((b) / 255.0) alpha:1.0]
- //屏幕的宽高度
- #define kWidth [UIScreen mainScreen].bounds.size.width
- #define kHeight [UIScreen mainScreen].bounds.size.height
- //系统版本
- #define iOS11Early [[[UIDevice currentDevice] systemVersion] floatValue] < 11.0
- //字体
- #define FONT_SIZE(size) [UIFont systemFontOfSize:size]
- #endif /* macro_h */
|