From 8caf70d1a4f2ba76e54a20b46d8cec71d2e4f799 Mon Sep 17 00:00:00 2001 From: Zoe Date: Sat, 20 Jan 2024 01:43:24 +0900 Subject: [PATCH] =?UTF-8?q?[Chore/#123]=20=EC=A0=91=EA=B7=BC=EC=A0=9C?= =?UTF-8?q?=EC=96=B4=EC=9E=90=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Challenge/Cells/AppListCollectionViewCell.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/HMH_iOS/HMH_iOS/Presentation/Challenge/Cells/AppListCollectionViewCell.swift b/HMH_iOS/HMH_iOS/Presentation/Challenge/Cells/AppListCollectionViewCell.swift index 2c01b07..9bed264 100644 --- a/HMH_iOS/HMH_iOS/Presentation/Challenge/Cells/AppListCollectionViewCell.swift +++ b/HMH_iOS/HMH_iOS/Presentation/Challenge/Cells/AppListCollectionViewCell.swift @@ -23,7 +23,7 @@ final class AppListCollectionViewCell: UICollectionViewCell { } } - private let appImageView = UIImageView().then { + var appImageView = UIImageView().then { $0.backgroundColor = .blue $0.makeCornerRound(radius: 8.adjusted) } @@ -92,9 +92,8 @@ final class AppListCollectionViewCell: UICollectionViewCell { contentView.makeCornerRound(radius: 6.adjusted) } - func configureCell(appName: String, appIconImage: UIImage = UIImage(), appTime: String){ + func configureCell(appName: String, appTime: String){ self.appNameLabel.text = appName - self.appImageView.image = appIconImage self.timeLabel.text = appTime } }