| 1234567891011121314151617181920212223242526 |
- //
- // YBLiveListCell.h
- // YBVideo
- //
- // Created by YB007 on 2019/12/4.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface YBLiveListCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *thumbIV;
- @property (weak, nonatomic) IBOutlet UIImageView *avatarIV;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *liveNumsL;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UIImageView *cartIV;
- @property(nonatomic,strong)NSDictionary *dataDic;
- @end
|