From bc948fa9d66ced4cd47de8d8a8f3cdbaeb268695 Mon Sep 17 00:00:00 2001 From: Hwang Sang Hwan <137605270+Hrepay@users.noreply.github.com> Date: Sat, 14 Mar 2026 16:56:19 +0900 Subject: [PATCH 1/3] =?UTF-8?q?[#399]=20DropDownView=20cornerRadius?= =?UTF-8?q?=EB=A5=BC=2010=EC=9C=BC=EB=A1=9C=20=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EATSSU/App/Sources/Presentation/Auth/View/DropDownView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EATSSU/App/Sources/Presentation/Auth/View/DropDownView.swift b/EATSSU/App/Sources/Presentation/Auth/View/DropDownView.swift index 7e6d1fcc..8fa070c5 100644 --- a/EATSSU/App/Sources/Presentation/Auth/View/DropDownView.swift +++ b/EATSSU/App/Sources/Presentation/Auth/View/DropDownView.swift @@ -90,7 +90,7 @@ final class DropDownView: BaseUIView { // 드롭다운 테이블 생성 let tableView = UITableView() - tableView.layer.cornerRadius = 12 + tableView.layer.cornerRadius = 10 tableView.layer.borderWidth = 1 tableView.layer.borderColor = UIColor.gray300.cgColor tableView.layer.shadowColor = UIColor.black.cgColor @@ -168,7 +168,7 @@ final class DropDownView: BaseUIView { config.titleAlignment = .leading button.configuration = config - button.layer.cornerRadius = 12 + button.layer.cornerRadius = 10 button.layer.borderWidth = 1 button.layer.borderColor = UIColor.gray300.cgColor button.contentHorizontalAlignment = .leading From d508d354ef48672b8ecb99ae4f23a7fc23f7c5be Mon Sep 17 00:00:00 2001 From: Hwang Sang Hwan <137605270+Hrepay@users.noreply.github.com> Date: Sat, 14 Mar 2026 17:55:24 +0900 Subject: [PATCH 2/3] =?UTF-8?q?[#399]=20=EC=8B=9D=EB=8B=B9=20=EC=B9=B4?= =?UTF-8?q?=EB=93=9C=20=ED=85=8C=EB=91=90=EB=A6=AC=20=EB=9D=BC=EC=9A=B4?= =?UTF-8?q?=EB=93=9C=20=EC=9E=98=EB=A6=BC=20=EC=88=98=EC=A0=95=20(insetGro?= =?UTF-8?q?uped=20=E2=86=92=20grouped)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/Home/View/HomeRestaurantView.swift | 2 +- .../RestaurantTableView/RestaurantMenuGroupCell.swift | 10 +++++++--- .../RestaurantTableViewHeader.swift | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/EATSSU/App/Sources/Presentation/Home/View/HomeRestaurantView.swift b/EATSSU/App/Sources/Presentation/Home/View/HomeRestaurantView.swift index f2e0cdf5..a005d67d 100644 --- a/EATSSU/App/Sources/Presentation/Home/View/HomeRestaurantView.swift +++ b/EATSSU/App/Sources/Presentation/Home/View/HomeRestaurantView.swift @@ -16,7 +16,7 @@ final class HomeRestaurantView: BaseUIView { // MARK: - UI Components lazy var restaurantTableView: UITableView = { - let tableView = UITableView(frame: .zero, style: .insetGrouped) + let tableView = UITableView(frame: .zero, style: .grouped) tableView.separatorStyle = .none tableView.contentInset = .zero tableView.backgroundColor = .gray100 diff --git a/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantMenuGroupCell.swift b/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantMenuGroupCell.swift index 74be53a9..01a6a5e3 100644 --- a/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantMenuGroupCell.swift +++ b/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantMenuGroupCell.swift @@ -20,6 +20,7 @@ final class RestaurantMenuGroupCell: BaseTableViewCell { view.layer.cornerRadius = 12 view.layer.borderWidth = 1 view.layer.borderColor = UIColor.gray200.cgColor + view.layer.masksToBounds = true view.backgroundColor = .white return view }() @@ -51,6 +52,8 @@ final class RestaurantMenuGroupCell: BaseTableViewCell { override func configureUI() { self.selectionStyle = .none self.selectedBackgroundView = UIView() + self.backgroundColor = .clear + contentView.backgroundColor = .clear contentView.addSubview(wrapperView) wrapperView.addSubviews(titleView, emptyLabel, menuStackView) @@ -60,7 +63,8 @@ final class RestaurantMenuGroupCell: BaseTableViewCell { // 오토레이아웃 설정 override func setLayout() { wrapperView.snp.makeConstraints { - $0.top.leading.trailing.equalToSuperview() + $0.top.equalToSuperview() + $0.leading.trailing.equalToSuperview().inset(20) $0.bottom.equalToSuperview().priority(UILayoutPriority.defaultHigh) } @@ -70,8 +74,8 @@ final class RestaurantMenuGroupCell: BaseTableViewCell { emptyLabel.snp.makeConstraints { $0.top.equalTo(titleView.snp.bottom).offset(16) - $0.horizontalEdges.equalToSuperview().inset(12) - $0.bottom.equalToSuperview().inset(16) + $0.centerX.equalToSuperview() + $0.bottom.equalToSuperview().inset(22) } menuStackView.snp.makeConstraints { diff --git a/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift b/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift index 98d5c5db..26d2f521 100644 --- a/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift +++ b/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift @@ -54,7 +54,7 @@ class RestaurantTableViewHeader: BaseTableViewHeaderView { func setLayout() { stackView.snp.makeConstraints { - $0.horizontalEdges.equalToSuperview() + $0.horizontalEdges.equalToSuperview().inset(20) $0.centerY.equalToSuperview() } titleLabel.snp.makeConstraints { From a46b787ef5fe66d28135cab47410614a8e4748f5 Mon Sep 17 00:00:00 2001 From: Hwang Sang Hwan <137605270+Hrepay@users.noreply.github.com> Date: Sat, 14 Mar 2026 18:04:09 +0900 Subject: [PATCH 3/3] =?UTF-8?q?[#399]=20=EC=84=B9=EC=85=98=20=ED=97=A4?= =?UTF-8?q?=EB=8D=94=20=EC=A2=8C=EC=9A=B0=20=EC=97=AC=EB=B0=B1=20=EB=AF=B8?= =?UTF-8?q?=EC=84=B8=20=EC=A1=B0=EC=A0=95=20(20=20=E2=86=92=2022)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/RestaurantTableView/RestaurantTableViewHeader.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift b/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift index 26d2f521..e53ffd38 100644 --- a/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift +++ b/EATSSU/App/Sources/Presentation/Home/View/RestaurantTableView/RestaurantTableViewHeader.swift @@ -54,7 +54,7 @@ class RestaurantTableViewHeader: BaseTableViewHeaderView { func setLayout() { stackView.snp.makeConstraints { - $0.horizontalEdges.equalToSuperview().inset(20) + $0.horizontalEdges.equalToSuperview().inset(22) $0.centerY.equalToSuperview() } titleLabel.snp.makeConstraints {