co-maps/iphone/Maps/Core/WebImage/IMWMImageCache.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
322 B
C
Raw Normal View History

2025-11-22 13:58:55 +01:00
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol IMWMImageCache
- (void)imageForKey:(NSString *)imageKey
completion:(void (^)(UIImage * _Nullable image, NSError * _Nullable error))completion;
- (void)setImage:(UIImage *)image forKey:(NSString *)imageKey;
- (void)cleanup;
@end
NS_ASSUME_NONNULL_END