单军华
2018-07-12 3e8437ae559487362fae3525beb79c534c213a51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  UIColor+Random.h
//  iOS-Categories (https://github.com/shaojiankui/iOS-Categories)
//
//  Created by Jakey on 14/12/15.
//  Copyright (c) 2014年 www.skyfox.org. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface UIColor (Random)
/**
 *  @brief  随机颜色
 *
 *  @return UIColor
 */
+ (UIColor *)RandomColor;
@end
 
 
 
#define  LMJ_HexColor(hex)        [UIColor colorWithHexString:@#hex]
@interface UIColor (EXtension_LMJ)
// 默认alpha位1
+ (UIColor *)colorWithHexString:(NSString *)color;
@end