YOUPAIEyeCatchingWaiterCell.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // YOUPAIEyeCatchingWaiterCell.h
  3. // 4.看视频
  4. //
  5. // Created by apple on 2020/7/28.
  6. // Copyright © 2020 apple. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIZYVideoModel.h"
  10. @protocol EyeCatchingWaiterCellDelegate <NSObject>
  11. - (void)youpaifclickAvatar:(YOUPAIZYVideoModel*)model;//点击了头像
  12. - (void)youpaifclickAttention:(YOUPAIZYVideoModel*)model;//点击了关注
  13. - (void)youpaifclickSupport:(YOUPAIZYVideoModel*)model;//点击了点赞
  14. -(void)youpaifclickImVideo:(YOUPAIZYVideoModel *)model;//点击了视频
  15. -(void)youpaifclickNikname:(YOUPAIZYVideoModel *)model;//点击了昵称
  16. -(void)youpaifclickBiXin:(YOUPAIZYVideoModel *)model;//点击了比心
  17. -(void)youpaifclickGift:(YOUPAIZYVideoModel *)model;// 点击了礼物
  18. //
  19. //- (void)youpaifclickMoreBtn:(YOUPAILCDynamicModel*)model index:(NSInteger)index;//点击了更多按钮
  20. //
  21. //- (void)youpaifneedUpdateCellHeight:(NSInteger)index cell:(YOUPAILCDynamicCell*)cell; //更新该行高度;
  22. //
  23. //- (void)youpaifdeleteImage:(YOUPAILCDynamicModel*)model index:(NSInteger)index; //删除图片
  24. @end
  25. @interface YOUPAIEyeCatchingWaiterCell : UITableViewCell
  26. @property(nonatomic,strong) YOUPAIZYVideoModel *model;
  27. @property (nonatomic, strong) UIButton *followBtn; // 关注
  28. @property(nonatomic,assign)id<EyeCatchingWaiterCellDelegate> delegate;
  29. @property (nonatomic,assign) BOOL hidesBottomBar;
  30. @end