1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // PhotoView.h
- // ImageBrowser
- //
- // Created by msk on 16/9/1.
- // Copyright © 2016年 msk. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FLAnimatedImageView.h"
- #import "FLAnimatedImage.h"
- @protocol PhotoViewDelegate <NSObject>
- /**
- * 点击图片时,隐藏图片浏览器
- */
- -(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<PhotoViewDelegate> delegate;
- /**
- * 传图片Url
- */
- -(id)initWithFrame:(CGRect)frame withPhotoUrl:(NSString *)photoUrl;
- /**
- * 传具体图片
- */
- -(id)initWithFrame:(CGRect)frame withPhotoImage:(UIImage *)image;
- @end
|