Skip to content

dgadd/iOSModelViewPresenter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Model-View-Presenter Example in iOS

NOTE This sample code demonstrates only ONE method in the presenter class, a method to push an array of book titles to the view. In a typical, busy view controller with multiple events being handled, the underlying presenter class might have many methods to serve each of these activities.

Over time, I will try and add additional presenter methods to this example.


Explanation of Model-View-Presenter (used with protocols in iOS)

MVP is a solution to the age-old problem of business logic and external coordination concerns slipping into the presentation layer. The view controllers in iOS are largely concerned with serving the view, either by listening for events and handling them (typically through delegate methods or IBAction methods), or by assigning information to properties. But it is difficult to prevent the rest of the application's concerns slipping into this layer by default.

The best way to prevent this is by writing unit tests against the view controller. However, the view controller has many concerns and couplings that would make truly isolated unit-tests difficult.

The Model-View-Presenter pattern addresses this by creating a new, simple class called a presenter, with no direct dependencies on any concerns above it (presentation) or below it (business logic, IO, data). The Presenter achieves this by only operating against protocols (interfaces in java/C#) which have been injected into the constructor (alloc/init) of the class. Unit tests use a combination of mock objects (that observe and verify behavior), stubs (simple auto-generated implementations of the protocol) or fully-created fake classes to verify the behavior of the presenter, without ever directly connecting to the view controller or underlying data sources.

In this example code, the implementation of Model-View-Presenter uses:

  • groups that store Presenters, Views, Models (and also: Repositories and ViewControllers)
  • the Presenter init takes as parameters protocols (in Java and C#, this would be interfaces)
  • the first parameter is a protocol for a repository (to query and return the Model)
  • the second parameter is a protocol for the View (to receive content that is pushed to it, and to notify of events that it has received)
  • the Model group is empty; the model in this implementation is merely an NSString* (a book title)

The first unit test in this sample code uses mock objects to design and verify the behavior of the presenter methods. These methods coordinate the actions of the protocols that have been dependency-injected into the presenter's init. Specifically, the test verifies its expectation that the presenter's displayBooksFromBookstore method will:

  • find all books from the book store repository
  • "push" those books to the view

The second unit test uses a fake class to verify that data passed through the presenter matches as expected.

Finally: What should the view controller look like when Model-View-Presenter is used?

It should have 4 main effects:

  • An init or early event in the view controller should instantiate the presenter, passing in "self" as the conforming view protocol
  • your view controller will still have lots of methods--filled with the event handling and delegate fulfilment methods that are typically required for an objective-C application. But the CONTENT of those methods will have changed.
  • these methods should now contain only presentation logic. For example, the table row event will still have to retrieve the cell by its identifier and assign values to the cell's contents--those are a presentation-level concern
  • but any non-presentation logic (coordination logic, business logic, model manipulation) will now be passed to presenter methods instead.

And those presenter methods will now be isolated/decoupled and therefore can (and should) each be verified and validated by mock and unit tests.

About

A demonstration project using Model-View-Presenter with iOS

Resources

Stars

Watchers

Forks

Packages