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