ShopListTableViewCell.h 601 B

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