SearchHistoryCell.h 499 B

123456789101112131415161718192021222324
  1. //
  2. // SearchHistoryCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/27.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^DelBlcok)(NSString *type);
  10. @interface SearchHistoryCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *contentL;
  12. @property(nonatomic,copy)DelBlcok delEvent;
  13. - (IBAction)clickDelBtn:(UIButton *)sender;
  14. +(SearchHistoryCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath*)indexPath;
  15. @end