MoviaBox/Thimra/Base/View/SPCollectionView.swift
2025-04-21 14:30:28 +08:00

23 lines
503 B
Swift

//
// SPCollectionView.swift
// Thimra
//
// Created by on 2025/4/9.
//
import UIKit
class SPCollectionView: UICollectionView {
override init(frame: CGRect, collectionViewLayout layout: UICollectionViewLayout) {
super.init(frame: frame, collectionViewLayout: layout)
self.backgroundColor = .clear
self.contentInsetAdjustmentBehavior = .never
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}