ShopGoodsTableViewCell.h 709 B

1234567891011121314151617181920212223242526
  1. //
  2. // ShopGoodsTableViewCell.h
  3. // UIAuctionShop
  4. //
  5. // Created by 王珂 on 16/9/18.
  6. // Copyright © 2016年 zongyoutec.com. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class ShopGoodsTableViewCell;
  10. @protocol ShopGoodsTableViewCellDelegate<NSObject>
  11. - (void)closeViewWithShopGoodsTableViewCell:(ShopGoodsTableViewCell *)cell;
  12. @end
  13. @class ShopGoodsModel;
  14. @interface ShopGoodsTableViewCell : UITableViewCell
  15. @property (nonatomic, strong) ShopGoodsModel * model;
  16. @property (nonatomic, assign) int type;//如果是主播type为0,观众为1,无商品为2;
  17. @property (nonatomic, weak) id<ShopGoodsTableViewCellDelegate>delegate;
  18. + (instancetype)cellWithTableView:(UITableView *)tableView;
  19. @end