26 lines
582 B
Swift
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")
|
|
}
|
|
|
|
}
|