19 lines
297 B
Swift
19 lines
297 B
Swift
//
|
|
// SPHomeHotContentCell.swift
|
|
// MoviaBox
|
|
//
|
|
// Created by 长沙佳儿 on 2025/6/18.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class SPHomeHotContentCell: SPHomeContentCell {
|
|
|
|
|
|
private lazy var trendingView: SPHomeTrendingView = {
|
|
let view = SPHomeTrendingView()
|
|
return view
|
|
}()
|
|
|
|
}
|