123456789101112131415161718 |
- //
- // UIImage+MT.h
- // ADuTechnology
- //
- // Created by Simon on 2019/9/28.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIImage (MT)
- //压缩图片
- - (NSData *)compressQualityWithMaxLength:(NSInteger)maxLength;
- @end
- NS_ASSUME_NONNULL_END
|