From 3f7d845496bdb65b54a83ff16e3b51fea48614fa Mon Sep 17 00:00:00 2001 From: Kwak Seong Joon Date: Sat, 22 Jul 2023 03:20:10 +0900 Subject: [PATCH] =?UTF-8?q?[Fix]=20=EC=B1=8C=EB=A6=B0=EC=A7=80=EB=B7=B0=20?= =?UTF-8?q?=ED=85=8D=EC=8A=A4=ED=8A=B8=EC=83=89=EA=B9=94=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD(#120)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ChallengeDayCheckCollectionViewCollectionViewCell.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/LionHeart-iOS/LionHeart-iOS/Scenes/Challenge/Cells/ChallengeDayCheckCollectionViewCollectionViewCell.swift b/LionHeart-iOS/LionHeart-iOS/Scenes/Challenge/Cells/ChallengeDayCheckCollectionViewCollectionViewCell.swift index 889a0ebd..20637a67 100644 --- a/LionHeart-iOS/LionHeart-iOS/Scenes/Challenge/Cells/ChallengeDayCheckCollectionViewCollectionViewCell.swift +++ b/LionHeart-iOS/LionHeart-iOS/Scenes/Challenge/Cells/ChallengeDayCheckCollectionViewCollectionViewCell.swift @@ -20,6 +20,12 @@ final class ChallengeDayCheckCollectionViewCollectionViewCell: UICollectionViewC } } + var whiteTextColor: UIColor? { + didSet { + countLabel.textColor = whiteTextColor + } + } + private let countLabel: UILabel = { let label = UILabel() label.textAlignment = .center