MoviaBox/ShortPlay/Base/View/SPCollectionView.swift
2025-04-09 18:24:58 +08:00

23 lines
506 B
Swift

//
// SPCollectionView.swift
// ShortPlay
//
// 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")
}
}