Types of types
Oct 12, 2020, 5:00 AM
You can also read this article on my employer’s blog
Let’s talk about types and memory!
In Swift a type can either be value type or reference type.
Value types
A Value type is a type that provides value semantics.
But what is value...
Combine playgrounds
May 28, 2020, 4:35 AM
At WWDC 2019 Apple introduced Combine, a new framework for reactive programming. This programming paradigm is becomming more and more popular over the recent years, and it’s clear that Apple intends to move forward with it.
Reactive...
Data driven dataSource
Jun 15, 2019, 5:35 AM
Creating a tableView is a common task for any iOS developer and this also calls for creating a dataSource.
Which implies any improvement to the process of creating and maintaining thoses dataSource can be a huge amount of time...
Type Erasure and Protocol with associated type
Feb 23, 2019, 4:35 AM
Protocol with associated type:
First let’s see what Apple says about protocols with associated types:
When defining a protocol, it’s sometimes useful to declare one or more associated types as part of the protocol’s definition. An...