1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| //
| // Copyright © 2020 dahua. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| NS_ASSUME_NONNULL_BEGIN
|
| @interface UIImageView (LCPicDecrypt)
|
|
| /**
| 解密图片缩略图
|
| @param url 图片URL
| @param placeholder 默认图片
| @param deviceId 设备Id
| @param key 解密密钥
| */
| -(void)lc_setImageWithURL:(NSString *)url placeholderImage:(UIImage *)placeholder DeviceId:(NSString *)deviceId Key:(NSString *)key;
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|