// // ShopListTableViewCell.h // BuguLive // // Created by yy on 16/9/21. // Copyright © 2016年 xfg. All rights reserved. // #import @class ShopListModel; @class ShopListTableViewCell; @protocol ShopListTableViewCellDelegate - (void)enterEditWithShopListTableViewCell:(ShopListTableViewCell *)shopListTableViewCell; @end @interface ShopListTableViewCell : UITableViewCell @property (nonatomic, strong) ShopListModel * model; @property (nonatomic, weak) id delegate; + (instancetype)cellWithTableView:(UITableView *)tableView; @end