TCLiveListCell.h 436 B

1234567891011121314151617181920212223
  1. //
  2. // TCLivePusherInfo.h
  3. // TCLVBIMDemo
  4. //
  5. // Created by annidyfeng on 16/8/3.
  6. // Copyright © 2016年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TCLiveListModel.h"
  10. @class TCLiveInfo;
  11. /**
  12. * 点播列表的Cell类,主要展示封面、标题、昵称、定位位置
  13. */
  14. @interface TCLiveListCell : UICollectionViewCell
  15. {
  16. TCLiveInfo *_model;
  17. }
  18. @property (nonatomic , retain) TCLiveInfo *model;
  19. @end