//
|
// AwardListCCell.swift
|
// DolphinEnglishLearnStudent
|
//
|
// Created by 无故事王国 on 2024/5/23.
|
//
|
|
import UIKit
|
import JQTools
|
|
class AwardListCCell: UICollectionViewCell {
|
|
@IBOutlet weak var image_awar: UIImageView!
|
@IBOutlet weak var label_title: UILabel!
|
override func awakeFromNib() {
|
super.awakeFromNib()
|
}
|
|
func setModel(_ model:RecommendModel){
|
image_awar.sd_setImage(with: URL(string: model.coverImg))
|
image_awar.jq_cornerRadius = 8
|
label_title.text = model.name
|
}
|
|
override func layoutSubviews() {
|
super.layoutSubviews()
|
// image_awar.jq_addShadows(shadowColor: UIColor(hexStr: "#B9B9B9").withAlphaComponent(0.5), corner: 8, radius: 4, offset: CGSize(width: 0, height: 2), opacity: 1)
|
}
|
|
}
|