Loading...
Searching...
No Matches
NCResourceListener.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3@class NCImage;
4
5
10DEFAULT_EXPORT_ATTRIBUTE
11@protocol NCResourceListener <NSObject>
12
13- (void)onLoaded:(nonnull NSString *)imageUrl
14 image:(nullable NCImage *)image;
15
16- (void)onFailed:(nonnull NSString *)imageUrl
17 error:(nullable NSError *)error;
18
19@end