Skip to content

Commit

Permalink
#158 feat: 일기 작성 뷰 컨트롤러와 일기 작성 뷰 모델 연결
Browse files Browse the repository at this point in the history
  • Loading branch information
radiantchoi committed Dec 6, 2022
1 parent 4a59dde commit c678c90
Showing 1 changed file with 4 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ final class DiaryEditViewController: UIViewController {
static let tagButtonCornerRadius = CGFloat(halfMinorContentHeight / 2)
}

// let viewModel: DiaryEditViewModel
let viewModel: DiaryEditViewModel
private let shazamSession = ShazamSession() // 임시로 연동 - 추후 분리 예정
private var disposeBag = DisposeBag()

Expand Down Expand Up @@ -167,16 +167,9 @@ final class DiaryEditViewController: UIViewController {

private lazy var tapGesture = UITapGestureRecognizer()

// // 뷰 모델이 작성되었을 경우, 위의 뷰 모델 프로퍼티 주석 해제와 함께 사용하면 됩니다.
// init(viewModel: DiaryEditViewModel
// = DiaryEditViewModel()) {
// self.viewModel = viewModel
//
// super.init(nibName: nil, bundle: nil)
// }

// 뷰 모델이 작성되기 전 임시로 사용하는 이니셜라이저입니다.
init() {
init(viewModel: DiaryEditViewModel = DiaryEditViewModel()) {
self.viewModel = viewModel

super.init(nibName: nil, bundle: nil)
}

Expand Down

0 comments on commit c678c90

Please sign in to comment.