From 42b4b624b9c0750bc470d748995b36df39e4d425 Mon Sep 17 00:00:00 2001 From: Sejin Lee Date: Fri, 13 Jan 2023 16:35:09 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Fix]=20#103=20-=20=EC=B6=9C=EB=B0=9C?= =?UTF-8?q?=EC=A7=80=20=EA=B2=80=EC=83=89=20=ED=85=8D=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=ED=95=84=EB=93=9C=20placeholder=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/CourseDrawing/VC/DepartureSearchVC.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runnect-iOS/Runnect-iOS/Presentation/CourseDrawing/VC/DepartureSearchVC.swift b/Runnect-iOS/Runnect-iOS/Presentation/CourseDrawing/VC/DepartureSearchVC.swift index 8a88eec0..1ff6f618 100644 --- a/Runnect-iOS/Runnect-iOS/Presentation/CourseDrawing/VC/DepartureSearchVC.swift +++ b/Runnect-iOS/Runnect-iOS/Presentation/CourseDrawing/VC/DepartureSearchVC.swift @@ -22,7 +22,7 @@ final class DepartureSearchVC: UIViewController { // MARK: - UI Components private lazy var naviBar = CustomNavigationBar(self, type: .search) - .setTextFieldPlaceholder(placeholder: "지역과 키워드 위주로 검색해보세요") + .setTextFieldPlaceholder(placeholder: "출발지를 설정해주세요") .showKeyboard() private let dividerView = UIView().then { From aa71a7f65db78beebb808e878b6660d4a6d45838 Mon Sep 17 00:00:00 2001 From: Sejin Lee Date: Fri, 13 Jan 2023 16:35:34 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Fix]=20#103=20-=20CourseDetailVC=EC=9D=98?= =?UTF-8?q?=20=EC=82=AC=EC=9A=A9=EC=9E=90=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20?= =?UTF-8?q?=EB=9D=BC=EC=9A=B4=EB=93=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/CourseDetail/VC/CourseDetailVC.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Runnect-iOS/Runnect-iOS/Presentation/CourseDetail/VC/CourseDetailVC.swift b/Runnect-iOS/Runnect-iOS/Presentation/CourseDetail/VC/CourseDetailVC.swift index a3413c90..94ffa614 100644 --- a/Runnect-iOS/Runnect-iOS/Presentation/CourseDetail/VC/CourseDetailVC.swift +++ b/Runnect-iOS/Runnect-iOS/Presentation/CourseDetail/VC/CourseDetailVC.swift @@ -54,7 +54,7 @@ final class CourseDetailVC: UIViewController { private let mapImageView = UIImageView() private let profileImageView = UIImageView().then { $0.image = ImageLiterals.imgStampC3 - $0.layer.cornerRadius = 20 + $0.layer.cornerRadius = 17 $0.layer.borderWidth = 1 $0.layer.borderColor = UIColor.m3.cgColor } @@ -164,7 +164,7 @@ extension CourseDetailVC { self.likeButton.isSelected = scrap guard let distance = model.publicCourse.distance else { return } - self.courseDistanceInfoView.setDescriptionText(description: String(distance)) + self.courseDistanceInfoView.setDescriptionText(description: "\(distance)km") let location = "\(model.publicCourse.departure.region) \(model.publicCourse.departure.city)" self.courseDepartureInfoView.setDescriptionText(description: location) self.courseExplanationTextView.text = model.publicCourse.description