JXCategoryFactory.h 439 B

123456789101112131415161718
  1. //
  2. // JXCategoryFactory.h
  3. // JXCategoryView
  4. //
  5. // Created by jiaxin on 2018/8/17.
  6. // Copyright © 2018年 jiaxin. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface JXCategoryFactory : NSObject
  11. + (CGFloat)interpolationFrom:(CGFloat)from to:(CGFloat)to percent:(CGFloat)percent;
  12. + (UIColor *)interpolationColorFrom:(UIColor *)fromColor to:(UIColor *)toColor percent:(CGFloat)percent;
  13. @end