// // GoodsImageView.h // Lighting // // Created by 曹云霄 on 16/6/3. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import #import "TOGoodsEntityModel.h" @interface GoodsImageView : UIImageView /** * 数据源 */ @property (nonatomic,strong) TOGoodsEntityModel *model; /** * 长按删除 */ @property (nonatomic,copy) void(^delectedBlock)(TOGoodsEntityModel *model,GoodsImageView *imageView); /** * 显示图片地址 */ @property (nonatomic,copy) NSString *showImageViewAddress; @end