Skip to content

Commit

Permalink
feat: 생일 문자열 형식 적용 (TeamNADA#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun99999 committed Apr 21, 2023
1 parent 608900c commit ebaa883
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit ebaa883

Please sign in to comment.