Skip to content

Instantly share code, notes, and snippets.

@twittemb
Created March 19, 2020 20:44
Show Gist options
  • Save twittemb/5f17305cadc1afc60830d583ac9c643f to your computer and use it in GitHub Desktop.
Save twittemb/5f17305cadc1afc60830d583ac9c643f to your computer and use it in GitHub Desktop.
// With RxSwift
Observable
.start(spin: levelsSpin)
.disposed(by: disposeBag)
// With ReactiveSwift
SignalProducer
.start(spin: levelsSpin)
.disposed(by: disposeBag)
// With Combine
AnyPublisher
.start(spin: levelsSpin)
.store(in: &cancellables)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment