From 3916604d8aa87fcd7fba29658ad79bf6a9765f6a Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 16:01:03 +0900 Subject: [PATCH 01/11] =?UTF-8?q?refactor:=20#406=20=EB=A7=88=EC=9D=B4?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=EB=B7=B0=20=EB=8B=89=EB=84=A4?= =?UTF-8?q?=EC=9E=84=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20=EC=BB=AC=EB=9F=AC=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/Common/TextView/OneLineTextBoxView.swift | 8 ++++++-- .../Presentation/Feature/MyPage/View/MyPageView.swift | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/TextView/OneLineTextBoxView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/TextView/OneLineTextBoxView.swift index 78df5cd3..aec60237 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/TextView/OneLineTextBoxView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/TextView/OneLineTextBoxView.swift @@ -15,17 +15,20 @@ final class OneLineTextBoxView: BaseView { private let tagTitle: String? private let tagType: ByeBooFilledTagType? private let isHighlighted: Bool + private let titleColor: UIColor? init( title: String, tagTitle: String? = nil, tagType: ByeBooFilledTagType? = nil, - isHighlighted: Bool = false + isHighlighted: Bool = false, + titleColor: UIColor? = nil ) { self.title = title self.tagTitle = tagTitle self.tagType = tagType self.isHighlighted = isHighlighted + self.titleColor = titleColor if let tagType, let tagTitle { @@ -50,9 +53,10 @@ final class OneLineTextBoxView: BaseView { layer.borderColor = UIColor(.primary300).cgColor } + let finalColor = titleColor ?? (isHighlighted ? .grayscale50 : .grayscale300) titleLabel.applyByeBooFont( style: .body3R16, - color: isHighlighted ? .grayscale50 : .grayscale300, + color: finalColor, numberOfLines: 1 ) titleLabel.isUserInteractionEnabled = false diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/View/MyPageView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/View/MyPageView.swift index b1906b31..cc5c9709 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/View/MyPageView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/View/MyPageView.swift @@ -14,7 +14,7 @@ final class MyPageView: BaseView { private(set) var scrollView = UIScrollView() private let contentView = UIView() - private(set) var nameView = OneLineTextBoxView(title: "") + private(set) var nameView = OneLineTextBoxView(title: "", titleColor: .grayscale100) private(set) var moveButton = UIButton() private let divider1 = SectionDividerView() private(set) var myRecordView = MyRecordView() From 4a614078f3a5916708bfe59c3bcb1d3f69d2165b Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 16:07:37 +0900 Subject: [PATCH 02/11] =?UTF-8?q?refactor:=20#406=20=EA=B3=B5=ED=86=B5?= =?UTF-8?q?=ED=80=98=EC=8A=A4=ED=8A=B8=20=EB=B7=B0=20=EB=82=A0=EC=A7=9C=20?= =?UTF-8?q?UILabel=20=EB=84=88=EB=B9=84=20=EA=B3=A0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Feature/Quest/View/CommonQuest/DateNavigator.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/DateNavigator.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/DateNavigator.swift index a2963a45..9d6aee86 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/DateNavigator.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/DateNavigator.swift @@ -62,7 +62,8 @@ final class DateNavigator: UITableViewHeaderFooterView { dateLabel.applyByeBooFont( style: .body2M16, text: dateFormatter.string(from: currentDate), - color: .grayscale50 + color: .grayscale50, + textAlignment: .center ) nextButton.do { $0.setImage(.nextOff, for: .normal) @@ -92,6 +93,7 @@ final class DateNavigator: UITableViewHeaderFooterView { $0.centerY.equalToSuperview() } dateLabel.snp.makeConstraints { + $0.width.equalTo(58.adjustedW) $0.centerY.equalToSuperview() } nextButton.snp.makeConstraints { From 3fdb4cbca13057663da5ab5be0d5982db83be919 Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 16:15:08 +0900 Subject: [PATCH 03/11] =?UTF-8?q?refactor:=20#406=20displayDate=20?= =?UTF-8?q?=EB=82=A0=EC=A7=9C=20=ED=98=95=EC=8B=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ByeBoo-iOS/Presentation/Extension/DateFormatter+.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Extension/DateFormatter+.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Extension/DateFormatter+.swift index c0968e05..4ef0103b 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Extension/DateFormatter+.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Extension/DateFormatter+.swift @@ -11,7 +11,7 @@ extension DateFormatter { private static let displayDate: DateFormatter = { let formatter = DateFormatter() - formatter.dateFormat = "yyyy.MM.dd." + formatter.dateFormat = "yyyy. MM. dd." return formatter }() From b45b2cab82d8a38b015845a5c4317125cc3aa309 Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 16:21:52 +0900 Subject: [PATCH 04/11] =?UTF-8?q?refactor:=20#406=20=EA=B3=B5=ED=86=B5?= =?UTF-8?q?=ED=80=98=EC=8A=A4=ED=8A=B8=20=EB=B7=B0=EC=9D=98=20=ED=85=8C?= =?UTF-8?q?=EC=9D=B4=EB=B8=94=EB=B7=B0=20separatorType=EC=9D=84=20none?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=A7=80=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Quest/View/CommonQuest/CommonQuestMyAnswersView.swift | 1 + .../Feature/Quest/View/CommonQuest/CommonQuestView.swift | 1 + 2 files changed, 2 insertions(+) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestMyAnswersView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestMyAnswersView.swift index 0a162a81..dd076237 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestMyAnswersView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestMyAnswersView.swift @@ -20,6 +20,7 @@ final class CommonQuestMyAnswersView: BaseView { ) answersTableView.do { $0.backgroundColor = .grayscale900 + $0.separatorStyle = .none } } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestView.swift index c2ca5221..d28e2ade 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestView.swift @@ -25,6 +25,7 @@ final class CommonQuestView: BaseView { ) $0.tableHeaderView = headerView $0.sectionHeaderTopPadding = 0 + $0.separatorStyle = .none } } From 5afd41f5d4dab8f1335297082e65be0fd0780129 Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 16:32:26 +0900 Subject: [PATCH 05/11] =?UTF-8?q?refactor:=20#406=20=EC=98=A8=EB=B3=B4?= =?UTF-8?q?=EB=94=A9=20=ED=80=98=EC=8A=A4=ED=8A=B8=20=EB=B0=A9=EC=8B=9D=20?= =?UTF-8?q?=EC=84=A0=ED=83=9D=EC=97=90=EC=84=9C=20=EC=9D=B4=EB=B3=84=20?= =?UTF-8?q?=EA=B7=B9=EB=B3=B5,=20=EC=9E=AC=ED=9A=8C=20=EC=A4=80=EB=B9=84?= =?UTF-8?q?=20=EC=88=9C=EC=84=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Domain/Entity/Enum/SelectQuestType.swift | 2 +- .../Information/View/Quest/QuestCardsView.swift | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Domain/Entity/Enum/SelectQuestType.swift b/ByeBoo-iOS/ByeBoo-iOS/Domain/Entity/Enum/SelectQuestType.swift index d4a14eae..dde7cc17 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Domain/Entity/Enum/SelectQuestType.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Domain/Entity/Enum/SelectQuestType.swift @@ -8,8 +8,8 @@ // 온보딩 시에 퀘스트 방식 선택 enum SelectQuestType: CaseIterable { - case reunion case recording + case reunion } extension SelectQuestType { diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/View/Quest/QuestCardsView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/View/Quest/QuestCardsView.swift index cc00c1a8..6b565e34 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/View/Quest/QuestCardsView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/View/Quest/QuestCardsView.swift @@ -13,15 +13,15 @@ import Then final class QuestCardsView: BaseView { private(set) var questCards = [ - QuestCardView( - title: "재회 준비", - subTitle: "X와의 재회를 위해\n나를 먼저 돌아보고\n상대를 이해해요", - image: .reunion - ), QuestCardView( title: "이별 극복", subTitle: "질문과 미션을 통해\n나만의 삶을\n회복해 나가요", image: .overcomingBreakup + ), + QuestCardView( + title: "재회 준비", + subTitle: "X와의 재회를 위해\n나를 먼저 돌아보고\n상대를 이해해요", + image: .reunion ) ] From 2351e08842d80c9920b0a6496e4f9ee78a399cc1 Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 16:59:01 +0900 Subject: [PATCH 06/11] =?UTF-8?q?refactor:=20#406=20=EC=98=A8=EB=B3=B4?= =?UTF-8?q?=EB=94=A9=EC=9D=98=20=ED=80=98=EC=8A=A4=ED=8A=B8=20=EB=B0=A9?= =?UTF-8?q?=EC=8B=9D=20=EC=84=A0=ED=83=9D=20=EB=B7=B0=EB=A1=9C=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99=20=EC=8B=9C=20=EB=B2=84=ED=8A=BC=20=ED=83=80=EC=9D=B4?= =?UTF-8?q?=ED=8B=80=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ByeBoo-iOS/Presentation/Common/ByeBooButton.swift | 2 +- .../Feature/Information/Common/InformationBaseView.swift | 1 + .../Feature/Information/Common/ProgressBarView.swift | 9 +++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/ByeBooButton.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/ByeBooButton.swift index e48c69b3..a02291f9 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/ByeBooButton.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/ByeBooButton.swift @@ -116,6 +116,6 @@ final class ByeBooButton: UIButton { } func updateTitle(_ title: String) { - self.setTitle(titleText, for: .normal) + self.setTitle(title, for: .normal) } } diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/Common/InformationBaseView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/Common/InformationBaseView.swift index 4e2f1d2d..3da3193f 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/Common/InformationBaseView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/Common/InformationBaseView.swift @@ -87,6 +87,7 @@ extension InformationBaseView { self.informationView = informationView self.progressBarType = progressBarType self.progressView = ProgressBarView(type: self.progressBarType) + self.nextButton.updateTitle(progressBarType.buttonName) self.setUI() self.setStyle() diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/Common/ProgressBarView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/Common/ProgressBarView.swift index 487c56d2..de9ef776 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/Common/ProgressBarView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/Common/ProgressBarView.swift @@ -12,6 +12,15 @@ import Then enum ProgressBarType: Int { case first, second + + var buttonName: String { + switch self { + case .first: + "다음으로" + case .second: + "완료하기" + } + } } final class ProgressBarView: BaseView { From 6258f85ea26fdce01b605470093b4fa10674839e Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 16:59:16 +0900 Subject: [PATCH 07/11] =?UTF-8?q?chore:=20#406=20=EC=A4=84=EB=B0=94?= =?UTF-8?q?=EA=BF=88=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewController/InformationViewController.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/ViewController/InformationViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/ViewController/InformationViewController.swift index f3ef2652..173ad2e3 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/ViewController/InformationViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Information/ViewController/InformationViewController.swift @@ -79,8 +79,10 @@ extension InformationViewController { @objc private func nextButtonDidTap() { switch informationBaseView.informationView { - case is InputNicknameView: saveNickname() - case is SelectQuestView: saveQuest() + case is InputNicknameView: + saveNickname() + case is SelectQuestView: + saveQuest() default: break } } From 5927e4c84253bb28cf1d5bca0471572229e86090 Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 20:01:55 +0900 Subject: [PATCH 08/11] =?UTF-8?q?refactor:=20#406=20=EB=82=B4=EB=B9=84?= =?UTF-8?q?=EA=B2=8C=EC=9D=B4=EC=85=98=EB=B0=94=20=EC=A2=8C=EC=9A=B0=20?= =?UTF-8?q?=ED=8C=A8=EB=94=A9=20=EC=A1=B0=EC=A0=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Navigation/ByeBooNavigationBar.swift | 35 +++++++++++++------ 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/Navigation/ByeBooNavigationBar.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/Navigation/ByeBooNavigationBar.swift index a42d1334..7f60fb1c 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/Navigation/ByeBooNavigationBar.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Common/Navigation/ByeBooNavigationBar.swift @@ -128,7 +128,7 @@ struct ByeBooNavigationBar { target: topViewController, action: action ) - navigationItem.leftBarButtonItem = backButtonItem + navigationItem.leftBarButtonItems = [makeSpacer(), backButtonItem] case .backAndMenu: let backButtonItem = makeBarButtonItem( @@ -136,12 +136,13 @@ struct ByeBooNavigationBar { target: topViewController, action: action ) - navigationItem.leftBarButtonItem = backButtonItem + navigationItem.leftBarButtonItems = [makeSpacer(), backButtonItem] makeTopRightButtonItem( image: .menu, target: topViewController, navigationItem: navigationItem, - action: secondAction + action: secondAction, + padding: 0 ) case .title(let string, _): @@ -171,7 +172,7 @@ struct ByeBooNavigationBar { target: topViewController, action: action ) - navigationItem.leftBarButtonItem = backButtonItem + navigationItem.leftBarButtonItems = [makeSpacer(), backButtonItem] case .editAndClose: let editButtonItem = makeBarButtonItem( @@ -179,12 +180,13 @@ struct ByeBooNavigationBar { target: topViewController, action: secondAction ) - navigationItem.leftBarButtonItem = editButtonItem + navigationItem.leftBarButtonItems = [makeSpacer(), editButtonItem] makeTopRightButtonItem( image: .xicon, target: topViewController, navigationItem: navigationItem, - action: action + action: action, + padding: 8.adjustedH ) case .confirmAndBack: let backButtonItem = makeBarButtonItem( @@ -197,8 +199,8 @@ struct ByeBooNavigationBar { target: topViewController, action: secondAction ) - navigationItem.leftBarButtonItem = backButtonItem - navigationItem.rightBarButtonItem = confirmButtonItem + navigationItem.leftBarButtonItems = [makeSpacer(), backButtonItem] + navigationItem.rightBarButtonItems = [makeSpacer(padding: 16), confirmButtonItem] case .none: let emptyItem = makeBarButtonItem( image: UIImage(), @@ -255,9 +257,22 @@ struct ByeBooNavigationBar { image: UIImage, target: BaseViewController, navigationItem: UINavigationItem, - action: Selector? + action: Selector?, + padding: CGFloat = 16.adjustedW ) { let closeButtonItem = makeBarButtonItem(image: image, target: target, action: action) - navigationItem.rightBarButtonItem = closeButtonItem + let spacer = makeSpacer(padding: padding) + navigationItem.rightBarButtonItems = [spacer, closeButtonItem] + } + + private static func makeSpacer(padding: CGFloat = 2.adjustedW) -> UIBarButtonItem { + let spacer = UIBarButtonItem( + barButtonSystemItem: .fixedSpace, + target: nil, + action: nil + ) + spacer.width = padding + + return spacer } } From 8766d1690e7a3f508fb8e8cdb585e620ee7a1ce1 Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 20:06:44 +0900 Subject: [PATCH 09/11] =?UTF-8?q?refactor:=20#406=20=EA=B3=B5=ED=86=B5?= =?UTF-8?q?=ED=80=98=EC=8A=A4=ED=8A=B8=EB=B7=B0=20=ED=8C=A8=EB=94=A9?= =?UTF-8?q?=EA=B0=92=20=EC=A1=B0=EC=A0=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Feature/Quest/View/CommonQuest/CommonQuestHeaderView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestHeaderView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestHeaderView.swift index 1765f4e8..30526ec8 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestHeaderView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/CommonQuest/CommonQuestHeaderView.swift @@ -47,7 +47,7 @@ final class CommonQuestHeaderView: BaseView { override func setLayout() { titleLabel.snp.makeConstraints { - $0.top.equalToSuperview().inset(16.adjustedH) + $0.top.equalToSuperview() $0.horizontalEdges.equalToSuperview().inset(24.adjustedW) } subtitleLabel.snp.makeConstraints { From 49e8388bfdfc9417f1ba2d83a174387c6e0611da Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sat, 14 Mar 2026 20:10:21 +0900 Subject: [PATCH 10/11] =?UTF-8?q?refactor:=20#406=20=EB=A7=88=EC=9D=B4?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=EB=B7=B0=20=EB=82=98=EC=9D=98=20?= =?UTF-8?q?=EA=B8=B0=EB=A1=9D=20=EC=83=81=EB=8B=A8=20=ED=8C=A8=EB=94=A9?= =?UTF-8?q?=EA=B0=92=20=EC=A1=B0=EC=A0=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/Feature/MyPage/View/MyPageView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/View/MyPageView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/View/MyPageView.swift index cc5c9709..ce34ee8d 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/View/MyPageView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/MyPage/View/MyPageView.swift @@ -66,7 +66,7 @@ final class MyPageView: BaseView { $0.horizontalEdges.equalToSuperview().inset(24.adjustedW) } myRecordView.snp.makeConstraints { - $0.top.equalTo(divider1.snp.bottom).offset(8.adjustedH) + $0.top.equalTo(divider1.snp.bottom) $0.horizontalEdges.equalToSuperview() } worldView.snp.makeConstraints { From fcff94959e5bab6232dea9ddc3763f52a1ea3015 Mon Sep 17 00:00:00 2001 From: heoseungjun Date: Sun, 15 Mar 2026 13:18:23 +0900 Subject: [PATCH 11/11] =?UTF-8?q?refactor:=20#406=20=EB=82=98=EC=9D=98=20?= =?UTF-8?q?=EC=97=AC=EC=A0=95=20=ED=97=A4=EB=8D=94=20=ED=8F=B0=ED=8A=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/Feature/Quest/Common/QuestHeaderBaseView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/Common/QuestHeaderBaseView.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/Common/QuestHeaderBaseView.swift index 6345564c..4043fc88 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/Common/QuestHeaderBaseView.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/Common/QuestHeaderBaseView.swift @@ -23,7 +23,7 @@ class QuestHeaderBaseView: BaseView { backgroundColor = .grayscale900 titleLabel.applyByeBooFont ( - style: .head1M24, + style: .head2M22, color: .grayscale50, textAlignment: .left, numberOfLines: 0