Skip to content

Latest commit

 

History

History
10 lines (5 loc) · 444 Bytes

README.md

File metadata and controls

10 lines (5 loc) · 444 Bytes

Model View Presenter

Simple project demonstrating the usage of the MVP patter.

Model <-> Presenter <-> ViewController

Here, presenter is responsible for converting the data model to be presentable and pass down to the controller. Controller is lightweight as presenter takes care of the data manupulation and also networking and parsing. Contrller just has the UI code to update the UI.

Model is also a seperate class in this pattern.