Uncategorized

Quick Swift: Combine (Just the Basics)

There are three things you generally want to do with Combine: publish values, manipulate those values, and receive those values elsewhere. Let's see how we can do each of those. Publishing Values Values are published with, predictably, Publishers. The most common way I see this happen is through @Published fields. So, for instance: class App… Continue reading Quick Swift: Combine (Just the Basics)