// // MJZoomingScrollView.h // // Created by mj on 13-3-4. // Copyright (c) 2013年 itcast. All rights reserved. // #import @class MJPhotoBrowser, MJPhoto, MJPhotoView; @protocol MJPhotoViewDelegate - (void)photoViewImageFinishLoad:(MJPhotoView *)photoView; - (void)photoViewSingleTap:(MJPhotoView *)photoView; - (void)photoViewDidEndZoom:(MJPhotoView *)photoView; @end @interface MJPhotoView : UIScrollView // 图片 @property (nonatomic, strong) MJPhoto *photo; // 代理 @property (nonatomic, weak) id photoViewDelegate; @end