From 722dbb40b71e213bc4b5afccd459d89379c8a342 Mon Sep 17 00:00:00 2001 From: Hamp Date: Sun, 16 Jun 2024 12:15:03 +0900 Subject: [PATCH] =?UTF-8?q?:zap:=20::=20=EC=84=9C=EB=B2=84=20=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EA=B0=80=EC=A0=B8=EC=98=A4=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Sources/Reactors/ListSearchResultReactor.swift | 1 - .../Features/SearchFeature/Sources/View/ListResultCell.swift | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Projects/Features/SearchFeature/Sources/Reactors/ListSearchResultReactor.swift b/Projects/Features/SearchFeature/Sources/Reactors/ListSearchResultReactor.swift index 13af1e897..6da076016 100644 --- a/Projects/Features/SearchFeature/Sources/Reactors/ListSearchResultReactor.swift +++ b/Projects/Features/SearchFeature/Sources/Reactors/ListSearchResultReactor.swift @@ -65,7 +65,6 @@ final class ListSearchResultReactor: Reactor { extension ListSearchResultReactor { private func updateSortType(_ type: SortType) -> Observable { - #warning("데이터 소스 가져오기") return .just(.updateSortType(type)) } diff --git a/Projects/Features/SearchFeature/Sources/View/ListResultCell.swift b/Projects/Features/SearchFeature/Sources/View/ListResultCell.swift index 0e3f4bb2f..49dac448b 100644 --- a/Projects/Features/SearchFeature/Sources/View/ListResultCell.swift +++ b/Projects/Features/SearchFeature/Sources/View/ListResultCell.swift @@ -9,7 +9,6 @@ final class ListResultCell: UICollectionViewCell { private let thumbnailView: UIImageView = UIImageView().then { $0.contentMode = .scaleAspectFill $0.clipsToBounds = true - $0.image = DesignSystemAsset.PlayListTheme.theme10.image $0.layer.cornerRadius = 4 } @@ -92,9 +91,9 @@ extension ListResultCell { } public func update(_ model: SearchPlaylistEntity) { - #warning("플레이 리스트 이미지") titleLabel.text = model.title creatorLabel.text = model.userName dateLabel.text = model.date + thumbnailView.kf.setImage(with:URL(string: model.image),placeholder: nil,options: [.transition(.fade(0.2))]) } }