react-native-fast-image/ios/FastImage/FFFastImageSource.m
Dylan Vann fddee2c583
Show local images.
Show local images on iOS and Android.
2018-06-09 22:12:56 -04:00

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) {
_url = url;
_priority = priority;
_headers = headers;
}
return self;
}
@end