MVVM with ReactiveCocoa 3, in Swift

Update, 22 Oct 2015: The ReactiveCocoa core team recently decided to increment their major version alongside Swift. So while ReactiveCocoa 4 will use Swift 2, conceptually it stays very close to its Swift 1.2 counterpart, ReactiveCocoa 3. The required code changes are illustrated in my ReactiveCocoa 4 migration example.


Despite its somewhat unwieldy name, the Model-View-ViewModel (MVVM) architecture has been gaining lots of traction in the iOS developer community in the last few years. This is no coincidence, as during that time, said community has also acquired a taste for unit testing and reactive programming, both of which are closely related to the concept, as we shall see.

MVVM promises to do away with the spaghettification that plagues many vanilla codebases which follow Apple’s recommended structure, especially as their view controllers grow to epic proportions. It recognizes that view controllers are basically glorified views, and introduces a new layer between data (model) and presentation (view): the view model.

Bob Spryn has written a fantastic introduction on what exactly that means, with animated illustrations and all. Honestly – if you only read one introductory post on the matter, make it this one!

Yet even after reading all of it (and a lot more), I felt unsure how to apply MVVM in a real-world application. Some of my most pressing questions were:

  • If views own their view models, but the latter hold the business logic, how does one handle navigation between views?
  • What if two views need to share some state?
  • How can one tap into networking signals to report “loading” state to a view?

(Remember that “view” in the above questions now includes view controllers, too.)

Learning by Coding

Looking for answers, I decided to write a little open-source app that would be simple enough to create in my free time, yet complex enough to shed some light on these issues. Since some of my colleagues and I love to play FIFA on our office Xbox, the app ended up being a match logbook with a simple rating system. Written in Objective-C, you can still find it on GitHub under the name of ObjectiveGoal.

As summer came, Swift became mature, and the ReactiveCocoa 3 betas began to stabilize. It was time to explore the new and long-awaited possibilities that Swift’s type safety and syntax brought along. I took the old ObjectiveGoal code and started porting it to Swift, making improvements here and there. Some parts were redesigned entirely, due to the rather large differences between ReactiveCocoa 2 and 3.

The result is, somewhat predictably, SwiftGoal – now on GitHub for your reading pleasure! 😃

What’s Next

In the upcoming posts, I will explain my learnings in more detail and address all the questions mentioned earlier,

as well as the following: