TCPlayViewCell.h 602 B

12345678910111213141516171819
  1. //
  2. // TCPlayViewCell.h
  3. // TXXiaoShiPinDemo
  4. //
  5. // Created by xiang zhang on 2018/2/2.
  6. // Copyright © 2018年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TCPlayDecorateView.h"
  10. @interface TCPlayViewCell : UITableViewCell<TCPlayDecorateDelegate>
  11. @property(strong,nonatomic) UIImageView* videoCoverView;
  12. @property(strong,nonatomic) UIView* videoParentView;
  13. @property(strong,nonatomic) UILabel* reviewLabel;
  14. @property(strong,nonatomic) TCPlayDecorateView* logicView;
  15. @property(weak,nonatomic) id<TCPlayDecorateDelegate>delegate;
  16. -(void)setLiveInfo:(TCLiveInfo *)liveInfo;
  17. @end