mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-03-29 15:59:12 +08:00
21 lines
564 B
Objective-C
21 lines
564 B
Objective-C
//
|
|
// PINRemoteImageCallbacks.h
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/9/15.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "PINRemoteImageManager.h"
|
|
|
|
@interface PINRemoteImageCallbacks : NSObject
|
|
|
|
@property (nonatomic, strong, nullable) PINRemoteImageManagerImageCompletion completionBlock;
|
|
@property (nonatomic, strong, nullable) PINRemoteImageManagerImageCompletion progressImageBlock;
|
|
@property (nonatomic, strong, nullable) PINRemoteImageManagerProgressDownload progressDownloadBlock;
|
|
@property (nonatomic, assign) CFTimeInterval requestTime;
|
|
|
|
@end
|