| | |
| | | #define GetRealHeight(H) H / (DesignHeight * 1.0f / APP_SCREEN_HEIGHT) |
| | | |
| | | |
| | | #define TextColor HEXCOLORA(0x333333, 1.0) |
| | | #define TextSelectColor HEXCOLORA(0xFB744A, 1.0) |
| | | #define TextColor HEXCOLORA(0x1B2D4D, 1.0) |
| | | #define TextSelectColor HEXCOLORA(0x4484F4, 1.0) |
| | | /** WEAKSELF_AT */ |
| | | #define WEAKSELF_AT __weak __typeof(&*self)weakSelf_AT = self; |
| | | #define HEXCOLORA(rgbValue, a) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16)) / 255.0 green:((float)((rgbValue & 0xFF00) >> 8)) / 255.0 blue:((float)(rgbValue & 0xFF)) / 255.0 alpha:a] |