From ebaa883ed2a6443fad9a87ef5b7ba49ac9daf11c Mon Sep 17 00:00:00 2001 From: hyun99999 Date: Fri, 21 Apr 2023 12:08:15 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=83=9D=EC=9D=BC=20=EB=AC=B8=EC=9E=90?= =?UTF-8?q?=EC=97=B4=20=ED=98=95=EC=8B=9D=20=EC=A0=81=EC=9A=A9=20(#448)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BottomSheet/SelectBirthBottomViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/SelectBirthBottomViewController.swift b/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/SelectBirthBottomViewController.swift index 61260b3b..d27e046d 100644 --- a/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/SelectBirthBottomViewController.swift +++ b/NADA-iOS-forRelease/Sources/ViewControllers/BottomSheet/SelectBirthBottomViewController.swift @@ -65,7 +65,7 @@ extension SelectBirthBottomSheetViewController { view.addSubview(dayPicker) view.addSubview(doneButton) - selectedBirth = monthList[0] + " " + dayList[0] + selectedBirth = setBirth(month: monthList[0], day: dayList[0]) monthPicker.delegate = self monthPicker.dataSource = self @@ -181,7 +181,7 @@ extension SelectBirthBottomSheetViewController: UIPickerViewDelegate, UIPickerVi month = month.isEmpty ? monthList[0] : month day = day.isEmpty ? dayList[0] : day - selectedBirth = month + " " + day + selectedBirth = setBirth(month: month, day: day) } func pickerView(_ pickerView: UIPickerView, rowHeightForComponent component: Int) -> CGFloat {