123456789101112131415161718192021222324252627282930313233343536 |
- //
- // YOUPAIMineInfoVideoCell.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/2.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIMineInfoBaseCell.h"
- #import "YOUPAIBubbleLabel.h"
- NS_ASSUME_NONNULL_BEGIN
- @class YOUPAIMineInfoVideoCell;
- @protocol YOUPAIMineInfoVideoCellDelegate <NSObject>
- -(void)mineInfoVideoCellhandle:(YOUPAIMineInfoVideoCell*)cell;
- @end
- @interface YOUPAIMineInfoVideoCell : YOUPAIMineInfoBaseCell
- @property (nonatomic, weak) id<YOUPAIMineInfoVideoCellDelegate> 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
|