UIImage+Tint.h 369 B

123456789101112131415161718192021
  1. //
  2. // UIImage+Tint.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 17/3/6.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImage (Tint)
  10. -(UIImage *) imageWithTintColor:(UIColor * )tintColor;
  11. -(UIImage *) imageWithGradientTintColor:(UIColor *)tintColor;
  12. // 控件绘制成图片
  13. + (UIImage *)imageWithView:(UIView *)view;
  14. @end