Book Image

Hands-On Design Patterns with Swift

By : Florent Vilmart, Giordano Scalzo, Sergio De Simone
Book Image

Hands-On Design Patterns with Swift

By: Florent Vilmart, Giordano Scalzo, Sergio De Simone

Overview of this book

Swift keeps gaining traction not only amongst Apple developers but also as a server-side language. This book demonstrates how to apply design patterns and best practices in real-life situations, whether that's for new or already existing projects. You’ll begin with a quick refresher on Swift, the compiler, the standard library, and the foundation, followed by the Cocoa design patterns – the ones at the core of many cocoa libraries – to follow up with the creational, structural, and behavioral patterns as defined by the GoF. You'll get acquainted with application architecture, as well as the most popular architectural design patterns, such as MVC and MVVM, and learn to use them in the context of Swift. In addition, you’ll walk through dependency injection and functional reactive programming. Special emphasis will be given to techniques to handle concurrency, including callbacks, futures and promises, and reactive programming. These techniques will help you adopt a test-driven approach to your workflow in order to use Swift Package Manager and integrate the framework into the original code base, along with Unit and UI testing. By the end of the book, you'll be able to build applications that are scalable, faster, and easier to maintain.
Table of Contents (22 chapters)
Title Page
Copyright and Credits
About Packt
Contributors
Preface
Index

MVVM and data binding


While data binding and two-way data binding are not required to use MVVM, you saw in the previous example that binding actions and values is tedious, a source of boilerplate, and prone to errors.

While data binding is usually found in Reactive programming frameworks, it revolves around a simple object: the Observable object. The responsibility of an observable is to call the observers whenever a change in the internal value occurs.

Implementing the Observable class

We'll implement Observable as a generic class, as it should be able to wrap any kind of object:

class Observable<Type> {
    typealias Observer = (Type) -> ()
    typealias Token = NSObjectProtocol

    private var observers = [(Token, Observer)]()

    var value: Type {
        didSet {
            notify()
        }
    }

    init(_ value: Type) {
        self.value = value
    }

    @discardableResult
    func bind(_ observer: @escaping Observer) -> Token {
        defer { observer(value) }
...