ZoomableImageView.h 333 B

12345678910111213141516171819
  1. //
  2. // ZoomableImageView.h
  3. // AIIM
  4. //
  5. // Created by qitewei on 2025/5/21.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ZoomableImageView : UIScrollView<UIScrollViewDelegate>
  10. @property (nonatomic, strong) UIImageView *imageView;
  11. - (void)setImage:(UIImage *)image;
  12. - (void)resetZoom;
  13. @end
  14. NS_ASSUME_NONNULL_END