24 lines
478 B
Swift
24 lines
478 B
Swift
//
|
|
// ButtonGroupCollectionViewCell.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 12/15/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
extension ButtonGroup {
|
|
|
|
public class ButtonGroupCollectionViewCell: UICollectionViewCell {}
|
|
|
|
}
|
|
|
|
extension ButtonGroup.ButtonGroupCollectionViewCell: AppleGuidlinesTouchable {
|
|
|
|
override open func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
|
|
Self.acceptablyOutsideBounds(point: point, bounds: bounds)
|
|
}
|
|
|
|
}
|