23 lines
506 B
Swift
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")
|
|
}
|
|
|
|
}
|