ReaderHive/ReaderHive/Base/View/NRCollectionView.swift
2025-12-17 18:04:38 +08:00

24 lines
517 B
Swift

//
// NRCollectionView.swift
// ReaderHive
//
// Created by on 2025/11/21.
//
import UIKit
class NRCollectionView: 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")
}
}