单军华
2018-07-12 3e8437ae559487362fae3525beb79c534c213a51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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