Skip to content

Instantly share code, notes, and snippets.

@lawreyios
Created October 4, 2019 14:39
Show Gist options
  • Save lawreyios/a9b5190763e453049688e1b6513103dc to your computer and use it in GitHub Desktop.
Save lawreyios/a9b5190763e453049688e1b6513103dc to your computer and use it in GitHub Desktop.
fileprivate let people: BehaviorRelay<[Person]> = BehaviorRelay(value: [
Person(name: "Spiderman", title: "Marvel"),
Person(name: "Batman", title: "DC"),
Person(name: "Mickey", title: "Disnet")
])
let disposeBag = DisposeBag()
@spraveenk91
Copy link

Typo error in demo data. It should be Disney

Person(name: "Mickey", title: "Disney")

By, the way its a simple and neat example for basic RXSwift.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment