react-native-fast-image/ios/FastImage/FFFastImageSource.m

21 lines
457 B
Mathematica
Raw Normal View History

2017-04-13 00:13:44 -04:00
#import "FFFastImageSource.h"
@implementation FFFastImageSource
- (instancetype)initWithURL:(NSURL *)url
priority:(FFFPriority)priority
headers:(NSDictionary *)headers
2018-06-13 23:47:10 -04:00
cacheControl:(FFFCacheControl)cacheControl
2017-04-13 00:13:44 -04:00
{
self = [super init];
if (self) {
_url = url;
2017-04-13 00:13:44 -04:00
_priority = priority;
_headers = headers;
2018-06-13 23:47:10 -04:00
_cacheControl = cacheControl;
2017-04-13 00:13:44 -04:00
}
return self;
}
@end