| 1234567891011121314151617181920212223 |
- //
- // CenterListCell.h
- // YBVideo
- //
- // Created by YunBao on 2018/6/14.
- // Copyright © 2018年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class NearbyVideoModel;
- @interface CenterListCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *videoBgIV;
- @property (weak, nonatomic) IBOutlet UILabel *zanNumL;
- /** 审核中 */
- @property (weak, nonatomic) IBOutlet UILabel *auditL;
- @property(nonatomic,strong)NearbyVideoModel *model;
- @end
|