Journey before destination, tests before production

Posts tagged "iOS"

6 posts found. View all tags

SwiftUI Navigation Done Right

12 January, 2026

When building highly modular iOS apps, one challenge stands out: how do you handle navigation without coupling your feature modules to…

Custom @Environment Keys in SwiftUI

08 July, 2019

is a property wrapper that gives views access to shared dependencies—, , , and others built into SwiftUI. But what about app-specific…

Component-Based UITableView

08 August, 2018

and are workhorses of iOS development, but they demand significant boilerplate. That boilerplate often ends up in view controllers…

Learn Rx by Implementing Observable

06 June, 2017

There are several ways to learn a new technology: Read about it Play with it Implement something similar Most tutorials cover the first two…

ViewModel in RxSwift World

11 June, 2016

According to the Microsoft Docs, a ViewModel acts as an intermediary between the view and the model, handling the view logic. It interacts…