File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 22
22
@property (nonatomic , strong ) FFFastImageSource *source;
23
23
@property (nonatomic , strong ) UIImage *defaultSource;
24
24
@property (nonatomic , strong ) UIColor *imageColor;
25
-
26
- @property (nonatomic , assign ) BOOL hasSentOnLoadStart;
27
- @property (nonatomic , assign ) BOOL hasCompleted;
28
- @property (nonatomic , assign ) BOOL hasErrored;
29
- // Whether the latest change of props requires the image to be reloaded
30
- @property (nonatomic , assign ) BOOL needsReload;
31
-
32
- @property (nonatomic , strong ) NSDictionary * onLoadEvent;
33
25
#ifdef RCT_NEW_ARCH_ENABLED
34
26
@property (nonatomic ) facebook::react::SharedViewEventEmitter eventEmitter;
35
27
#endif
36
28
37
- - (void )reloadImage ;
38
29
- (void )didSetProps : (NSArray <NSString*>*)changedProps ;
39
30
40
31
@end
Original file line number Diff line number Diff line change 2
2
#import < SDWebImage/UIImage+MultiFormat.h>
3
3
#import < SDWebImage/UIView+WebCache.h>
4
4
5
+ @interface FFFastImageView ()
6
+
7
+ @property (nonatomic , assign ) BOOL hasSentOnLoadStart;
8
+ @property (nonatomic , assign ) BOOL hasCompleted;
9
+ @property (nonatomic , assign ) BOOL hasErrored;
10
+ // Whether the latest change of props requires the image to be reloaded
11
+ @property (nonatomic , assign ) BOOL needsReload;
12
+
13
+ @property (nonatomic , strong ) NSDictionary * onLoadEvent;
14
+
15
+ @end
16
+
5
17
@implementation FFFastImageView
6
18
7
19
- (id ) init {
You can’t perform that action at this time.
0 commit comments