react-native-fast-image/ios/FastImage/FFFastImageView.h

24 lines
765 B
C
Raw Normal View History

2017-04-13 04:13:44 +00:00
#import <UIKit/UIKit.h>
#import <SDWebImage/UIImageView+WebCache.h>
2017-04-28 15:06:10 +00:00
#import <SDWebImage/SDWebImageDownloader.h>
2017-11-30 04:23:46 +00:00
#import <FLAnimatedImage/FLAnimatedImageView.h>
2017-04-13 04:13:44 +00:00
#import <React/RCTComponent.h>
#import <React/RCTResizeMode.h>
#import "FFFastImageSource.h"
@interface FFFastImageView : FLAnimatedImageView
2017-04-13 04:13:44 +00:00
@property (nonatomic, copy) RCTDirectEventBlock onFastImageLoadStart;
@property (nonatomic, copy) RCTDirectEventBlock onFastImageProgress;
2017-07-04 01:58:24 +00:00
@property (nonatomic, copy) RCTDirectEventBlock onFastImageError;
@property (nonatomic, copy) RCTDirectEventBlock onFastImageLoad;
@property (nonatomic, copy) RCTDirectEventBlock onFastImageLoadEnd;
2017-07-04 01:58:24 +00:00
@property (nonatomic, assign) RCTResizeMode resizeMode;
@property (nonatomic, strong) FFFastImageSource *source;
2017-04-13 04:13:44 +00:00
@end
2017-07-04 01:58:24 +00:00