UIImage+TintColor.h 336 B

123456789101112131415161718192021
  1. //
  2. // UIImage+TintColor.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2023/1/3.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "CPDFDataModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UIImage (TintColor)
  11. @property (nonatomic,strong) CPDFDataModel *datamodel;
  12. - (UIImage *)imageWithTintColor:(UIColor *)tintColor;
  13. @end
  14. NS_ASSUME_NONNULL_END