├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── RxMVVMExample.xcodeproj └── project.pbxproj └── RxMVVMExample ├── APIClient.swift ├── AppDelegate.swift ├── Default-568h@2x.png ├── Info.plist ├── Model.swift ├── ModelTableViewController.swift └── ViewModel.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morishin/RxMVVMExample/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" ~> 3.0 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" "3.4.1" 2 | -------------------------------------------------------------------------------- /RxMVVMExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morishin/RxMVVMExample/HEAD/RxMVVMExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxMVVMExample/APIClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morishin/RxMVVMExample/HEAD/RxMVVMExample/APIClient.swift -------------------------------------------------------------------------------- /RxMVVMExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morishin/RxMVVMExample/HEAD/RxMVVMExample/AppDelegate.swift -------------------------------------------------------------------------------- /RxMVVMExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morishin/RxMVVMExample/HEAD/RxMVVMExample/Default-568h@2x.png -------------------------------------------------------------------------------- /RxMVVMExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morishin/RxMVVMExample/HEAD/RxMVVMExample/Info.plist -------------------------------------------------------------------------------- /RxMVVMExample/Model.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | struct Model { 4 | let name: String 5 | } 6 | -------------------------------------------------------------------------------- /RxMVVMExample/ModelTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morishin/RxMVVMExample/HEAD/RxMVVMExample/ModelTableViewController.swift -------------------------------------------------------------------------------- /RxMVVMExample/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morishin/RxMVVMExample/HEAD/RxMVVMExample/ViewModel.swift --------------------------------------------------------------------------------