Created
May 13, 2017 17:16
-
-
Save TheCodedSelf/b1ad83927b470f32aad8d4fde415327e to your computer and use it in GitHub Desktop.
RxSwift: Bind to button taps
Using bind
is better way because tap
is a ControlEvent<()>
, so it never emits an error. In case of using subscribe
, it's not obvious anymore.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Which is the better way?