YBIBImageScrollView.h 680 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // YBIBImageScrollView.h
  3. // YBImageBrowserDemo
  4. //
  5. // Created by 波儿菜 on 2019/6/10.
  6. // Copyright © 2019 波儿菜. All rights reserved.
  7. //
  8. #import "YBImage.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSInteger, YBIBScrollImageType) {
  11. YBIBScrollImageTypeNone,
  12. YBIBScrollImageTypeOriginal,
  13. YBIBScrollImageTypeCompressed,
  14. YBIBScrollImageTypeThumb
  15. };
  16. @interface YBIBImageScrollView : UIScrollView
  17. - (void)setImage:(__kindof UIImage *)image type:(YBIBScrollImageType)type;
  18. @property (nonatomic, strong, readonly) YYAnimatedImageView *imageView;
  19. @property (nonatomic, assign) YBIBScrollImageType imageType;
  20. - (void)reset;
  21. @end
  22. NS_ASSUME_NONNULL_END