Comment on iOS application architecture: MVVM, behaviors, singletons, subclassingparentComments−UK-AL12yTraditionally(on desktop applications) the model was injected into the view, then actions(save, delete, buttons etc) were performed on the controller.However the way Apples IBOutlet system works, makes this difficult. You link up the UI to fields on the controller.The first significantly reduces code size.
Comments
Traditionally(on desktop applications) the model was injected into the view, then actions(save, delete, buttons etc) were performed on the controller.
However the way Apples IBOutlet system works, makes this difficult. You link up the UI to fields on the controller.
The first significantly reduces code size.