-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
Description
🍎 이슈 요약
- 바텀 시트 연결
- 코스 업로드 api 수정 (이름 추가해야함)
✅ 체크 리스트
- 바텀 시트 연결
- 코스 업로드 api 수정
- 버그 수정 (잊지말고 꼭 수정해라 이소진)
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let courseDrawingVC = CourseDrawingVC()
let departureLocationModel = addressList[indexPath.item].toDepartureLocationModel()
SelectedInfo.shared.type = .other //현재 이 부분과 아래 코드의 순서가 바뀌어있음 !!!!
courseDrawingVC.setData(model: departureLocationModel)
courseDrawingVC.hidesBottomBarWhenPushed = true
self.navigationController?.pushViewController(courseDrawingVC, animated: true)
}