zjf
2023-03-06 4c74f8a9fb913d0c3db432c65afc4bff7f779522
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  UIColor+ZJFAdditon.h
//  ProBIM
//
//  Created by zjf on 2017/12/25.
//  Copyright © 2017年 ProBIM. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface UIColor (ZJFAdditon)
+ (instancetype)z_colorWithHex:(uint32_t)hex alpha:(CGFloat)alpha;
+ (instancetype)z_colorWithR:(int)red G:(int)green B:(int)blue alpha:(CGFloat)alpha;
+ (instancetype)z_colorWithHex:(uint32_t)hex;
+ (instancetype)z_colorWithR:(int)red G:(int)green B:(int)blue;
+ (instancetype)z_randomColor;
@end