//
|
// 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
|