blackListCell.h 767 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BlackListCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/30.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "fansModel.h"
  10. typedef void (^BlackBlock)(NSString *type);
  11. @interface BlackListCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIButton *iconBtn;
  13. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  14. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  15. @property (weak, nonatomic) IBOutlet UIButton *delBtn;
  16. @property(nonatomic,strong)fansModel *model;
  17. @property(nonatomic,copy)BlackBlock blackEvent;
  18. - (IBAction)clickIconBtn:(UIButton *)sender;
  19. - (IBAction)clickDelBtn:(UIButton *)sender;
  20. +(BlackListCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath*)indexPath;
  21. @end