Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 472 Bytes

01_controller_hierarchy.md

File metadata and controls

10 lines (8 loc) · 472 Bytes

Controller hierarchy in Traditional MVC

In order to handle the user events, traditional MVC had to organize controllers in a hierarchy. When a View received an event, it was handed out to its controller . Events are delivered according to the actual cursor presence (which basically indicates which View is in Focus) until they rare given to a controller that is willing to handle the event.

only one controller active at a time.