24 Sep 2020 |
Min ReadHow to get started with RxSwift
Introduction
Most programming in the object-oriented era has been imperative. Code tells your
program what to do and has many ways to listen to change. However, you must tell
the system when something changes.
Wouldn’t it be better if you could set things up so the code updates reflect
changes automatically ? That's what reactive programming does. Your application
reacts to the changes and underlying data without you telling to do so. This
makes it easier to focus on the logic at hand rather th