How to use RxSwift with MVVM pattern
This time I want to talk about how to use RxSwift with MVVM. RxSwift has been a hot topic in the community for a few years now, but somehow I’ve managed to avoid it. It took me a while to switch my...
View ArticleHow to use RxSwift with MVVM pattern part 2
This is the second post on how to use RxSwift with MVVM series. In the first part we set up RxSwift from Cocoa pods and checked how to use BehaviorRelay, Observable and PublishSubject. This time we...
View ArticleNetwork request with RxSwift example
This time I want to show you how you can write network request with RxSwift. The biggest change with network request with RxSwift is that we don’t have to use completion blocks, delegates or other...
View ArticleUnit testing RxSwift application with XCTest framework
Unit testing RxSwift app is the topic I want to talk about today. This is the last part of the series How to use RxSwift with MVVM, where we have learned to use RxSwift by implementing the Friends...
View Article