| 1234567891011121314151617181920212223242526272829 |
- //
- // orderVideoCell.m
- // YBVideo
- //
- // Created by IOS1 on 2019/7/5.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import "orderVideoCell.h"
- @implementation orderVideoCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- - (void)setVideoModel:(NearbyVideoModel *)videoModel{
- _videoModel = videoModel;
- [_thumbImgV sd_setImageWithURL:[NSURL URLWithString:_videoModel.videoImage]];
- _titleL.text = _videoModel.videoTitle.length > 0 ? _videoModel.videoTitle : YZMsg(@"当前视频未填写视频标题");
- _timeL.text = _videoModel.userName;
- }
- @end
|