├── MVVMSample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── DesarrolloApple.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── MVVMSample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Extensions │ └── UIViewController+Extensions.swift ├── Info.plist ├── Model │ └── Data.swift ├── Network │ └── ApiClient.swift ├── View │ ├── CustomTableViewCell.swift │ └── ViewController.swift └── ViewModel │ └── DataViewModel.swift ├── README.md └── imgs └── mvvm.png /MVVMSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MVVMSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MVVMSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MVVMSample.xcodeproj/xcuserdata/DesarrolloApple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample.xcodeproj/xcuserdata/DesarrolloApple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MVVMSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/AppDelegate.swift -------------------------------------------------------------------------------- /MVVMSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MVVMSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MVVMSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MVVMSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MVVMSample/Extensions/UIViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/Extensions/UIViewController+Extensions.swift -------------------------------------------------------------------------------- /MVVMSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/Info.plist -------------------------------------------------------------------------------- /MVVMSample/Model/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/Model/Data.swift -------------------------------------------------------------------------------- /MVVMSample/Network/ApiClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/Network/ApiClient.swift -------------------------------------------------------------------------------- /MVVMSample/View/CustomTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/View/CustomTableViewCell.swift -------------------------------------------------------------------------------- /MVVMSample/View/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/View/ViewController.swift -------------------------------------------------------------------------------- /MVVMSample/ViewModel/DataViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/MVVMSample/ViewModel/DataViewModel.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/README.md -------------------------------------------------------------------------------- /imgs/mvvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesarrolloAntonio/MVVM-Sample-for-iOS/HEAD/imgs/mvvm.png --------------------------------------------------------------------------------