1234567891011121314151617181920 |
- //
- // UIColor+KDPColor.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/4.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIColor (KDPColor)
- + (UIColor*)gradientOneColor:(UIColor*)oneColor toColor:(UIColor*)twoColor Width:(int)width;
- +(instancetype)baseColor;
- +(instancetype)colorWithHex:(uint32_t)hex;
- @end
- NS_ASSUME_NONNULL_END
|