// // 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);
@end