Jabber Guest iOS SDK
UIColor+HexColor.h
1 //
2 // UIColor+HexColor.h
3 // JabberGuestSDK
4 //
5 // Created by davesm on 7/18/13.
6 // Copyright (c) 2013 Cisco Systems, Inc. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 @interface UIColor (HexColor)
12 + (UIColor *)colorWithRGBA:(NSString *)hexColor;
13 + (UIColor *)colorWithARGB:(NSString *)hexColor;
14 + (UIColor *)colorWithByteRed:(uint8_t)red green:(uint8_t)green blue:(uint8_t)blue alpha:(uint8_t)alpha;
15 + (UIColor *)colorWithByteRed:(uint8_t)red green:(uint8_t)green blue:(uint8_t)blue;
16 @end
17 
18 
19 @interface UIImage (ColorGenerator)
20 + (UIImage *)imageWithColor:(UIColor *)color;
21 @end