From d998dfb54a3f6b4ceb3ce1b0592a3f35cb39c27c Mon Sep 17 00:00:00 2001 From: mcrkgus Date: Mon, 4 Dec 2023 17:38:44 +0900 Subject: [PATCH] =?UTF-8?q?[Remove]=20#72=20-=20Footer=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ductInfoFooterCollectionReusableView.swift | 25 ------------------- ...SizeInfoFooterCollectionReusableView.swift | 25 ------------------- 2 files changed, 50 deletions(-) delete mode 100644 CDS-APP-2-iOS/Presentation/HatDetail/cell/ProductInfo/ProductInfoFooterCollectionReusableView.swift delete mode 100644 CDS-APP-2-iOS/Presentation/HatDetail/cell/SizeInfo/SizeInfoFooterCollectionReusableView.swift diff --git a/CDS-APP-2-iOS/Presentation/HatDetail/cell/ProductInfo/ProductInfoFooterCollectionReusableView.swift b/CDS-APP-2-iOS/Presentation/HatDetail/cell/ProductInfo/ProductInfoFooterCollectionReusableView.swift deleted file mode 100644 index 64616d6..0000000 --- a/CDS-APP-2-iOS/Presentation/HatDetail/cell/ProductInfo/ProductInfoFooterCollectionReusableView.swift +++ /dev/null @@ -1,25 +0,0 @@ -// -// ProductInfoFooterCollectionReusableView.swift -// CDS-APP-2-iOS -// -// Created by Gahyun Kim on 2023/11/22. -// - -import UIKit - -final class ProductInfoFooterCollectionReusableView: UICollectionReusableView { - - override init(frame: CGRect) { - super.init(frame: frame) - } - - required init?(coder: NSCoder) { - super.init(coder: coder) - } - - - func configure() { - backgroundColor = .clear - } - -} diff --git a/CDS-APP-2-iOS/Presentation/HatDetail/cell/SizeInfo/SizeInfoFooterCollectionReusableView.swift b/CDS-APP-2-iOS/Presentation/HatDetail/cell/SizeInfo/SizeInfoFooterCollectionReusableView.swift deleted file mode 100644 index 45950be..0000000 --- a/CDS-APP-2-iOS/Presentation/HatDetail/cell/SizeInfo/SizeInfoFooterCollectionReusableView.swift +++ /dev/null @@ -1,25 +0,0 @@ -// -// SizeInfoFooterCollectionReusableView.swift -// CDS-APP-2-iOS -// -// Created by Gahyun Kim on 2023/11/27. -// - -import UIKit - -class SizeInfoFooterCollectionReusableView: UICollectionReusableView { - - override init(frame: CGRect) { - super.init(frame: frame) - } - - required init?(coder: NSCoder) { - super.init(coder: coder) - } - - - func configure() { - backgroundColor = .clear - } - -}