单军华
2018-07-19 83b9d5c682b21d88133f24da0f94dd56bd79e687
screendisplay/Pods/RGB/RGBClassess/RRGB.h
New file
@@ -0,0 +1,17 @@
//
//  RRGB.h
//  RGB
//
//  Created by roycms on 2016/10/19.
//  Copyright © 2016年 roycms. All rights reserved.
//
#define RGB(rgbValue) [RRGB colorWithRGBFromString:(rgbValue)]
#define RGB16(rgbValue) [RRGB colorWithRGB16:(rgbValue)]
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface RRGB : NSObject
+ (UIColor *)colorWithRGB16:(int)rgb;
+ (UIColor *)colorWithRGBFromString:(NSString *)rgb;
@end