// // ShopGoodsTableViewCell.h // UIAuctionShop // // Created by 王珂 on 16/9/18. // Copyright © 2016年 zongyoutec.com. All rights reserved. // #import @class ShopGoodsTableViewCell; @protocol ShopGoodsTableViewCellDelegate - (void)closeViewWithShopGoodsTableViewCell:(ShopGoodsTableViewCell *)cell; @end @class ShopGoodsModel; @interface ShopGoodsTableViewCell : UITableViewCell @property (nonatomic, strong) ShopGoodsModel * model; @property (nonatomic, assign) int type;//如果是主播type为0,观众为1,无商品为2; @property (nonatomic, weak) iddelegate; + (instancetype)cellWithTableView:(UITableView *)tableView; @end