123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // YOUPAIEyeCatchingWaiterCell.h
- // 4.看视频
- //
- // Created by apple on 2020/7/28.
- // Copyright © 2020 apple. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIZYVideoModel.h"
- @protocol EyeCatchingWaiterCellDelegate <NSObject>
- - (void)youpaifclickAvatar:(YOUPAIZYVideoModel*)model;//点击了头像
- - (void)youpaifclickAttention:(YOUPAIZYVideoModel*)model;//点击了关注
- - (void)youpaifclickSupport:(YOUPAIZYVideoModel*)model;//点击了点赞
- -(void)youpaifclickImVideo:(YOUPAIZYVideoModel *)model;//点击了视频
- -(void)youpaifclickNikname:(YOUPAIZYVideoModel *)model;//点击了昵称
- -(void)youpaifclickBiXin:(YOUPAIZYVideoModel *)model;//点击了比心
- -(void)youpaifclickGift:(YOUPAIZYVideoModel *)model;// 点击了礼物
- //
- //- (void)youpaifclickMoreBtn:(YOUPAILCDynamicModel*)model index:(NSInteger)index;//点击了更多按钮
- //
- //- (void)youpaifneedUpdateCellHeight:(NSInteger)index cell:(YOUPAILCDynamicCell*)cell; //更新该行高度;
- //
- //- (void)youpaifdeleteImage:(YOUPAILCDynamicModel*)model index:(NSInteger)index; //删除图片
- @end
- @interface YOUPAIEyeCatchingWaiterCell : UITableViewCell
- @property(nonatomic,strong) YOUPAIZYVideoModel *model;
- @property (nonatomic, strong) UIButton *followBtn; // 关注
- @property(nonatomic,assign)id<EyeCatchingWaiterCellDelegate> delegate;
- @property (nonatomic,assign) BOOL hidesBottomBar;
- @end
|