Home

Awesome

Build Status

Build Status codecov

Introduction

Welcome to memory leak free VIPER pattern with TDD. VIPER is based on uncle bob's clean architecture. Details of VIPER can be seen on this link.

Memory Leak Free VIPER

VIPER is used with so many separation layer so it makes easier to test using TDD, because the more separation and single responsibility the easier TDD is done. Because VIPER use so many classes, memory leak may occur if you don't bind the classes correctly (as retain cycle often occur). It's also because iOS Framework keep its objects as strong on the View Controller. This code ensure you can have memory leak free VIPER because it's presenter is kept on View Controller. You can test and log the deinit for every each class.

TDD

TDD, in short a development environment where you write test cases first of your code first, not implementation. You can find more here.

In this part of example, you can learn how TDD itself is written on VIPER.

Folder Structure

The main source folder is located at Classes/ with structure below:

Environment

This code is built on Xcode 10 with minimum iOS Requirement is 10.0, and written in Swift 4

Build and Test

To build this app, you can directly run script runme.sh. It will open simulator iOS and try to run iPhone 6 installed on your computer.

Author

Created by Hendy Christianto. Contact me at hendychrst90@gmail.com