// // ZoomableImageView.h // AIIM // // Created by qitewei on 2025/5/21. // #import NS_ASSUME_NONNULL_BEGIN @interface ZoomableImageView : UIScrollView @property (nonatomic, strong) UIImageView *imageView; - (void)setImage:(UIImage *)image; - (void)resetZoom; @end NS_ASSUME_NONNULL_END