| 123456789101112131415161718192021 |
- //
- // 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
|