// // AuctionAloneCell.h // BuguLive // // Created by hym on 2016/12/1. // Copyright © 2016年 xfg. All rights reserved. // #import @protocol AuctionAloneCellDelegate @optional - (void)buttonActionGoNetVC:(NSString *)tile; @end @interface AuctionAloneCell : UITableViewCell @property (nonatomic, weak) id delegate; @property (nonatomic, strong) NSString *tile; + (instancetype)cellWithTbaleview:(UITableView *)newTableview; @end