YBLiveListCell.h 603 B

1234567891011121314151617181920212223242526
  1. //
  2. // YBLiveListCell.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2019/12/4.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface YBLiveListCell : UICollectionViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *thumbIV;
  11. @property (weak, nonatomic) IBOutlet UIImageView *avatarIV;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  13. @property (weak, nonatomic) IBOutlet UILabel *liveNumsL;
  14. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  15. @property (weak, nonatomic) IBOutlet UIImageView *cartIV;
  16. @property(nonatomic,strong)NSDictionary *dataDic;
  17. @end