prank/Funny_sounds/Tool/CollectionViewFlowLayout.swift
2024-09-03 09:38:34 +08:00

25 lines
740 B
Swift

//
// CollectionViewFlowLayout.swift
// Funny_sounds
//
// Created by 16 on 2024/8/15.
//
import Foundation
import UIKit
class CustomCollectionViewFlowLayout: UICollectionViewFlowLayout {
override func prepare() {
super.prepare()
guard let collectionView = collectionView else { return }
let itemWidth = (collectionView.bounds.width - minimumInteritemSpacing * 3) / 2
itemSize = CGSize(width: itemWidth, height: 230) //
minimumLineSpacing = 10 //
minimumInteritemSpacing = 10 //
sectionInset = UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 10)
}
}