//
|
// StudentVideoCCell.swift
|
// WanPai
|
//
|
// Created by 无故事王国 on 2023/6/26.
|
//
|
|
import UIKit
|
|
class StudentVideoCCell: UICollectionViewCell {
|
|
@IBOutlet weak var img_cover: UIImageView!
|
@IBOutlet weak var label_title: UILabel!
|
|
var videoListModel:StartClouseVideoListModel!{
|
didSet{
|
img_cover.sd_setImage(with: URL(string: videoListModel.videoCoverImgUrl))
|
label_title.text = videoListModel.videoName
|
}
|
}
|
|
override func awakeFromNib() {
|
super.awakeFromNib()
|
|
}
|
}
|