zjf
2023-03-13 881f0da670f20c401c1e1d08b36253abb28f72d2
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