GoodsImageView.h 589 Bytes
//
//  GoodsImageView.h
//  Lighting
//
//  Created by 曹云霄 on 16/6/3.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "TOGoodsEntityModel.h"

@interface GoodsImageView : UIImageView<UIGestureRecognizerDelegate>



/**
 *  数据源
 */
@property (nonatomic,strong) TOGoodsEntityModel *model;

/**
 *  长按删除
 */
@property (nonatomic,copy) void(^delectedBlock)(TOGoodsEntityModel *model,GoodsImageView *imageView);

/**
 *  显示图片地址
 */
@property (nonatomic,copy) NSString *showImageViewAddress;

@end