19 lines
361 B
Objective-C
19 lines
361 B
Objective-C
#import "FFFastImageSource.h"
|
|
|
|
@implementation FFFastImageSource
|
|
|
|
- (instancetype)initWithURL:(NSURL *)url
|
|
priority:(FFFPriority)priority
|
|
headers:(NSDictionary *)headers
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
_uri = url;
|
|
_priority = priority;
|
|
_headers = headers;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|