2017-04-18 11:57:18 -04:00

18 lines
453 B
Objective-C

#import <UIKit/UIKit.h>
#import <SDWebImage/UIImageView+WebCache.h>
#import <React/RCTComponent.h>
#import <React/RCTResizeMode.h>
#import "FFFastImageSource.h"
@interface FFFastImageView : UIImageView
@property(nonatomic, copy) RCTDirectEventBlock onFastImageError;
@property(nonatomic, copy) RCTDirectEventBlock onFastImageLoad;
@property(nonatomic, assign) RCTResizeMode resizeMode;
@property(nonatomic, strong) FFFastImageSource *source;
@end