// // YOUPAIMineInfoVideoCell.h // MSYOUPAI // // Created by admin on 2022/3/2. // Copyright © 2022 MS. All rights reserved. // #import #import "YOUPAIMineInfoBaseCell.h" #import "YOUPAIBubbleLabel.h" NS_ASSUME_NONNULL_BEGIN @class YOUPAIMineInfoVideoCell; @protocol YOUPAIMineInfoVideoCellDelegate -(void)mineInfoVideoCellhandle:(YOUPAIMineInfoVideoCell*)cell; @end @interface YOUPAIMineInfoVideoCell : YOUPAIMineInfoBaseCell @property (nonatomic, weak) id delegate; @property (strong,nonatomic) UILabel *youpaipTitleRemarkLab; @property(strong, nonatomic) UIImageView *youpaipImageView; @property(strong, nonatomic) UIImageView *youpaipplayerImageView; @property (strong,nonatomic) UILabel *youpaipRemarkLab; // 气泡 @property(strong, nonatomic) YOUPAIBubbleLabel*bubbleLab; +(CGFloat)cellheight; @end NS_ASSUME_NONNULL_END