| 123456789101112131415161718192021222324 |
- //
- // SearchHistoryCell.h
- // YBVideo
- //
- // Created by YunBao on 2018/7/27.
- // Copyright © 2018年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|