mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-06-12 17:08:33 +08:00
20 lines
458 B
Objective-C
20 lines
458 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 progressBlock;
|
|
@property (nonatomic, assign) CFTimeInterval requestTime;
|
|
|
|
@end
|