From 7da8ab1e5e2ddc1a77f95d9343f32ad11485fb06 Mon Sep 17 00:00:00 2001 From: jonnwon Date: Mon, 15 Apr 2024 23:25:31 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20FolderListCell=EC=9D=98=20=EC=B2=B4?= =?UTF-8?q?=ED=81=AC=EB=A7=88=ED=81=AC=20config=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- iBox/Sources/BoxList/AddBookmark/FolderListCell.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iBox/Sources/BoxList/AddBookmark/FolderListCell.swift b/iBox/Sources/BoxList/AddBookmark/FolderListCell.swift index 2d8facf..8e86e22 100644 --- a/iBox/Sources/BoxList/AddBookmark/FolderListCell.swift +++ b/iBox/Sources/BoxList/AddBookmark/FolderListCell.swift @@ -25,7 +25,8 @@ class FolderListCell: UITableViewCell { } private let checkImageView = UIImageView().then { - $0.image = UIImage(systemName: "checkmark") + let config = UIImage.SymbolConfiguration(pointSize: 14, weight: .semibold, scale: .default) + $0.image = UIImage(systemName: "checkmark", withConfiguration: config) $0.contentMode = .scaleAspectFit $0.tintColor = .box $0.isHidden = true @@ -68,7 +69,6 @@ class FolderListCell: UITableViewCell { checkImageView.snp.makeConstraints { make in make.centerY.equalToSuperview() make.trailing.equalToSuperview().offset(-20) - make.width.height.equalTo(24) } folderNameLabel.snp.makeConstraints { make in