PINRemoteImageCallbacks.h 564 B

123456789101112131415161718192021
  1. //
  2. // PINRemoteImageCallbacks.h
  3. // Pods
  4. //
  5. // Created by Garrett Moon on 3/9/15.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "PINRemoteImageManager.h"
  10. @interface PINRemoteImageCallbacks : NSObject
  11. @property (nonatomic, strong, nullable) PINRemoteImageManagerImageCompletion completionBlock;
  12. @property (nonatomic, strong, nullable) PINRemoteImageManagerImageCompletion progressImageBlock;
  13. @property (nonatomic, strong, nullable) PINRemoteImageManagerProgressDownload progressDownloadBlock;
  14. @property (nonatomic, assign) CFTimeInterval requestTime;
  15. @end