19 lines
361 B
Mathematica
19 lines
361 B
Mathematica
|
#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
|