UIColor+Utils.h
1 //
2 // UIColor+Utils.h
3 // OoyalaSkinSDK
4 //
5 // Created by Maksim Kupetskii on 9/24/18.
6 // Copyright © 2018 ooyala. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
13 @interface UIColor (Utils)
14 
15 + (NSString *)hexStringFromColor:(UIColor *)color;
16 
17 @end
18 
19 NS_ASSUME_NONNULL_END
Definition: UIColor+Utils.h:13