From 01eaa839a75a89c5e2c492782b259bd1f610fab9 Mon Sep 17 00:00:00 2001 From: sanghyeok-kim Date: Mon, 10 Apr 2023 11:19:29 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20MVVMInterface=EC=9D=98=20bind=20?= =?UTF-8?q?=EC=88=9C=EC=84=9C=20=EB=B3=80=EA=B2=BD=20(ouput=20binding?= =?UTF-8?q?=EC=9D=84=20=EB=A8=BC=EC=A0=80=20=ED=95=9C=20=EB=92=A4=20input?= =?UTF-8?q?=20binding)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Multimer/Presentation/Support/Protocol/MVVMInterface.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Multimer/Multimer/Presentation/Support/Protocol/MVVMInterface.swift b/Multimer/Multimer/Presentation/Support/Protocol/MVVMInterface.swift index 24792e8..29cc3dc 100644 --- a/Multimer/Multimer/Presentation/Support/Protocol/MVVMInterface.swift +++ b/Multimer/Multimer/Presentation/Support/Protocol/MVVMInterface.swift @@ -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) } }