mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-06-11 08:03:53 +08:00
19 lines
423 B
Objective-C
19 lines
423 B
Objective-C
//
|
|
// PINRemoteImageCallbacks.h
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/9/15.
|
|
//
|
|
//
|
|
|
|
@import Foundation;
|
|
#import "PINRemoteImageManager.h"
|
|
|
|
@interface PINRemoteImageCallbacks : NSObject
|
|
|
|
@property (nonatomic, strong) PINRemoteImageManagerImageCompletion completionBlock;
|
|
@property (nonatomic, strong) PINRemoteImageManagerImageCompletion progressBlock;
|
|
@property (nonatomic, assign) CFTimeInterval requestTime;
|
|
|
|
@end
|