Having explored the basics of RxSwift in a playground (Chapter 11) and learned the underpinnings of the technology (Chapter 12), it’s time to look at RxSwift at work in an app. This chapter will show you how to take code that you can download from GitHub and turn it into an app.
RxSwift implements reactive programming, and that’s what the app in this chapter will demonstrate. It starts very basically: The app reacts to events that the user generates. That type of app can be created easily using notifications within the app because the app generates both the ...