SynthReel/SynthReel/Base/View/SRCollectionView.swift
2025-12-10 10:23:22 +08:00

26 lines
582 B
Swift

//
// SRCollectionView.swift
// SynthReel
//
// Created by on 2025/11/14.
// Copyright © 2025 SR. All rights reserved.
//
import UIKit
import LYEmptyView
class SRCollectionView: 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")
}
}