Created
March 19, 2020 20:44
-
-
Save twittemb/5f17305cadc1afc60830d583ac9c643f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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