refering to:https://github.com/ReactiveX/RxSwift/blob/master/Documentation/Tips.md
Always strive to model your systems or their parts as pure functions.Those pure functions can be tested easily and can be used to modify operator behaviors.
When you are using Rx,first try to compose built-in operator.
If using some combination of operators often, create your convenience operators.
extension ObservableType where E: MaybeCool {
@warn_unused_result(message=”http://git.io/rxs.uo”)
public func coolEelements()
-> Observable {
return filter{ e -> Bool in
return e.isCool
}
}
}
Rx operators are as general as possible, but there will always be edge cases that will be hard to model.In those cases you can just create your own operator and possibly use one of the built-in operators as reference.
Always use operators to compose subscriptions.
Avoid nesting subscribe calls at all cost.This is a code smell.
textField.rx.text.subscribe(onNext: { text in
performURLRequest(text).subscribe(onNext: { result in
….
})
.addDisposable(disposeBag)
})
.addDisposableTo(disposeBag)
Preferred way of changing disposables by using operators.
textField.rx.text
.flatMapLatest { text in
return performURLRequest(text)
}
…
.addDisposableTo(disposeBag)//only one top most disposable