YOUPAIMineInfoVideoCell.h 903 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // YOUPAIMineInfoVideoCell.h
  3. // MSYOUPAI
  4. //
  5. // Created by admin on 2022/3/2.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIMineInfoBaseCell.h"
  10. #import "YOUPAIBubbleLabel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @class YOUPAIMineInfoVideoCell;
  13. @protocol YOUPAIMineInfoVideoCellDelegate <NSObject>
  14. -(void)mineInfoVideoCellhandle:(YOUPAIMineInfoVideoCell*)cell;
  15. @end
  16. @interface YOUPAIMineInfoVideoCell : YOUPAIMineInfoBaseCell
  17. @property (nonatomic, weak) id<YOUPAIMineInfoVideoCellDelegate> delegate;
  18. @property (strong,nonatomic) UILabel *youpaipTitleRemarkLab;
  19. @property(strong, nonatomic) UIImageView *youpaipImageView;
  20. @property(strong, nonatomic) UIImageView *youpaipplayerImageView;
  21. @property (strong,nonatomic) UILabel *youpaipRemarkLab;
  22. // 气泡
  23. @property(strong, nonatomic) YOUPAIBubbleLabel*bubbleLab;
  24. +(CGFloat)cellheight;
  25. @end
  26. NS_ASSUME_NONNULL_END