// // SearchHistoryCell.h // YBVideo // // Created by YunBao on 2018/7/27. // Copyright © 2018年 cat. All rights reserved. // #import typedef void (^DelBlcok)(NSString *type); @interface SearchHistoryCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *contentL; @property(nonatomic,copy)DelBlcok delEvent; - (IBAction)clickDelBtn:(UIButton *)sender; +(SearchHistoryCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath*)indexPath; @end