MessageFansCell.h 731 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // MessageFansCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/24.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MessageFansModel.h"
  10. @interface MessageFansCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIButton *iconBtn;
  12. @property (weak, nonatomic) IBOutlet UILabel *contentL;
  13. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  14. @property (weak, nonatomic) IBOutlet UIButton *followBtn;
  15. @property(nonatomic,strong)MessageFansModel *model;
  16. /** 预留点击事件 */
  17. - (IBAction)clickIconBtn:(UIButton *)sender;
  18. - (IBAction)clickFollowBtn:(UIButton *)sender;
  19. +(MessageFansCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath*)indexPath;
  20. @end