IanKeen / iankeen.github.io

Source for my blog
http://iankeen.tech
Other
0 stars 0 forks source link

Surviving RxSwift #11

Open IanKeen opened 5 years ago

IanKeen commented 5 years ago

Comments for: https://iankeen.tech/2019/03/20/surviving-rxswift/

hmlongco commented 5 years ago

Nice article. I'd also add understanding when to use [unowned self] and [weak self] in subscription closures so that you don't end up with retain cycles and so that your view controllers and view models don't leak.

adriansergheev commented 5 years ago

Good article. Totally agree that some components should be wrapped in rx extensions, instead of trying to invent the wheel again.