0

In a desktop application that uses MVC, what object should be responsible for switching from one view to another? A controller at the next highest level of abstraction?

(Conceptual question not particular to language/platform.)

1 Answer 1

1

Yes, that would be correct. You can think of your controller as something of a traffic cop. It handles directing the incoming traffic through the appropriate channels (your business services), and then directs it to its next destination (the view).

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.