// // PhotoView.h // ImageBrowser // // Created by msk on 16/9/1. // Copyright © 2016年 msk. All rights reserved. // #import #import "FLAnimatedImageView.h" #import "FLAnimatedImage.h" @protocol PhotoViewDelegate /** * 点击图片时,隐藏图片浏览器 */ -(void)tapHiddenPhotoView; // 长按保存图片 - (void)longPressPhotoView:(UIImage *)image; @end @interface PhotoView : UIView /** 父视图 */ @property(nonatomic,strong) UIScrollView *scrollView; /** 图片视图 */ @property(nonatomic, strong) FLAnimatedImageView *imageView; @property(nonatomic, strong) UIImageView *webPimageView; /** 代理 */ @property(nonatomic, weak) id delegate; /** * 传图片Url */ -(id)initWithFrame:(CGRect)frame withPhotoUrl:(NSString *)photoUrl; /** * 传具体图片 */ -(id)initWithFrame:(CGRect)frame withPhotoImage:(UIImage *)image; @end