In the last three chapters, you have seen the basics of RxSwift and reactive programming as well as how to create a very basic app using the ReactiveX/RxSwift repository from GitHub. This chapter will move further so that you can build a small app that uses basic reactive features.
You will build a simple app that lets you choose an item from a list, as you can see in Figure 14-1. This is a typical beginning ReactiveX app that you will find in many variations across the Internet. What you are looking at is a UISearchBar and a UITableView. The table view ...