// // topicVideoCell.m // YBVideo // // Created by IOS1 on 2019/7/4. // Copyright © 2019 cat. All rights reserved. // #import "topicVideoCell.h" @implementation topicVideoCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } - (void)setModel:(NearbyVideoModel *)model{ _model = model; [_thumbImgV sd_setImageWithURL:[NSURL URLWithString:_model.videoImage]]; } @end