Tusker/Tusker/Views/ZeroHeightCollectionViewCel...

22 lines
489 B
Swift

//
// ZeroHeightCollectionViewCell.swift
// Tusker
//
// Created by Shadowfacts on 12/3/22.
// Copyright © 2022 Shadowfacts. All rights reserved.
//
import UIKit
class ZeroHeightCollectionViewCell: UICollectionViewCell {
override init(frame: CGRect) {
super.init(frame: frame)
heightAnchor.constraint(equalToConstant: 0).isActive = true
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}