Skip to content

Commit

Permalink
refactor: MVVMInterface의 bind 순서 변경 (ouput binding을 먼저 한 뒤 input bind…
Browse files Browse the repository at this point in the history
…ing)
  • Loading branch information
sanghyeok-kim committed Apr 10, 2023
1 parent 8be7ee9 commit 01eaa83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protocol ViewType: AnyObject {
extension ViewType {
func bind(viewModel: ViewModel) {
self.viewModel = viewModel
bindInput(to: viewModel)
bindOutput(from: viewModel)
bindInput(to: viewModel)
}
}

0 comments on commit 01eaa83

Please sign in to comment.