dcty
Results
2
comments of
dcty
@implementation TPKeyboardAvoidingState - (BOOL)keyboardVisible { if (self.keyboardRect.size.height == 0) { return NO; } return _keyboardVisible; } @end override keyboardVisible getter can fix the problem
just try the macro below #define HEXCOLOR(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]