MJPhotoView.h 607 B

123456789101112131415161718192021222324
  1. //
  2. // MJZoomingScrollView.h
  3. //
  4. // Created by mj on 13-3-4.
  5. // Copyright (c) 2013年 itcast. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class MJPhotoBrowser, MJPhoto, MJPhotoView;
  9. @protocol MJPhotoViewDelegate <NSObject>
  10. - (void)photoViewImageFinishLoad:(MJPhotoView *)photoView;
  11. - (void)photoViewSingleTap:(MJPhotoView *)photoView;
  12. - (void)photoViewDidEndZoom:(MJPhotoView *)photoView;
  13. @end
  14. @interface MJPhotoView : UIScrollView <UIScrollViewDelegate>
  15. // 图片
  16. @property (nonatomic, strong) MJPhoto *photo;
  17. // 代理
  18. @property (nonatomic, weak) id<MJPhotoViewDelegate> photoViewDelegate;
  19. @end