123456789101112131415161718192021 |
- //
- // UIImage+TintColor.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2023/1/3.
- //
- #import <UIKit/UIKit.h>
- #import "CPDFDataModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface UIImage (TintColor)
- @property (nonatomic,strong) CPDFDataModel *datamodel;
- - (UIImage *)imageWithTintColor:(UIColor *)tintColor;
- @end
- NS_ASSUME_NONNULL_END
|