mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-03-28 08:08:45 +08:00
20 lines
352 B
Objective-C
20 lines
352 B
Objective-C
//
|
|
// PINRemoteImageCallbacks.m
|
|
// Pods
|
|
//
|
|
// Created by Garrett Moon on 3/9/15.
|
|
//
|
|
//
|
|
|
|
#import "PINRemoteImageCallbacks.h"
|
|
|
|
@implementation PINRemoteImageCallbacks
|
|
|
|
- (void)setCompletionBlock:(PINRemoteImageManagerImageCompletion)completionBlock
|
|
{
|
|
_completionBlock = [completionBlock copy];
|
|
self.requestTime = CACurrentMediaTime();
|
|
}
|
|
|
|
@end
|