123456789101112131415161718 |
- //
- // JXCategoryFactory.h
- // JXCategoryView
- //
- // Created by jiaxin on 2018/8/17.
- // Copyright © 2018年 jiaxin. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface JXCategoryFactory : NSObject
- + (CGFloat)interpolationFrom:(CGFloat)from to:(CGFloat)to percent:(CGFloat)percent;
- + (UIColor *)interpolationColorFrom:(UIColor *)fromColor to:(UIColor *)toColor percent:(CGFloat)percent;
- @end
|