RxCookbook
RxCookbook copied to clipboard
Ideas π
Here we can gather potential ideas that we can include here. Of course titles are just placeholders.
- [ ] I donβt see
rx.*
. How can I implement this myself? - [ ] Why should I use
disposeBag
? - [ ] Why and when should I use
unowned self
orweak self
? - [ ] Why was my code executed twice? (Talk about sharing subscriptions etc.)
- [ ] What is the difference between
filter()
andtakeUntil()
/takeWhile()
?
- [ ] How can I bind
String
toString?
(Optional problem) - [ ] How can I fix "Element can be bound to user interface only on MainThread" error?
- [ ] How can I debug the Observables?
- [ ] How can I do unit test?
- [ ] What happen if I don't use
addDisposableTo()
? - [ ] How can I use Rx in reusable cells?
- [ ] How can I do
setNeedsLayout()
when value changed? - [ ] What's difference between
observeOn()
andsubscribeOn()
- [ ] What's the difference
Observable
andDriver
?
One could invite https://blog.vinelab.net/rxswift-subject-types-264c780e2865#.yptn2ayh4 to write about the different SubjectType
types.