AuctionGoodsCell.h 561 B

123456789101112131415161718192021222324252627
  1. //
  2. // AuctionGoodsCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/10/11.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class AuctionGoodsCell;
  10. @class ShopGoodsModel;
  11. @protocol AuctionGoodsCellDelegate <NSObject>
  12. - (void)clickAuctionWithAuctionGoodsCell:(AuctionGoodsCell *)cell;
  13. @end
  14. @interface AuctionGoodsCell : UITableViewCell
  15. @property (nonatomic, strong) ShopGoodsModel * model;
  16. @property (nonatomic, weak) id<AuctionGoodsCellDelegate>delegate;
  17. + (instancetype)cellWithTableView:(UITableView *)tableView;
  18. @end