Class NCResourceListener - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki

NCResourceListener provides a callback to be invoked when NCResourceManager will load or fail loading of the image. The callback is invoked in the UI thread.

Referenced from: NCResourceManager.

@protocol NCResourceListener

- (void)onLoaded:(nonnull NSString *)imageId
           image:(nullable NCImage *)image;

- (void)onFailed:(nonnull NSString *)imageId
           error:(nullable NSError *)error;

@end