Created
May 13, 2017 17:16
-
-
Save TheCodedSelf/b1ad83927b470f32aad8d4fde415327e to your computer and use it in GitHub Desktop.
RxSwift: Bind to button taps
Which is the better way?
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
Dont know the difference but Im used to do this way: