Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tailec/ios-architecture
A collection of iOS architectures - MVC, MVVM, MVVM+RxSwift, VIPER, RIBs and many others
https://github.com/tailec/ios-architecture
architecture ios ios-architectures mvc mvvm redux rib rxswift swift viper
Last synced: 3 months ago
JSON representation
A collection of iOS architectures - MVC, MVVM, MVVM+RxSwift, VIPER, RIBs and many others
- Host: GitHub
- URL: https://github.com/tailec/ios-architecture
- Owner: tailec
- License: mit
- Created: 2019-01-26T00:28:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-16T12:52:58.000Z (over 2 years ago)
- Last Synced: 2024-04-21T18:20:14.628Z (7 months ago)
- Topics: architecture, ios, ios-architectures, mvc, mvvm, redux, rib, rxswift, swift, viper
- Language: Swift
- Homepage:
- Size: 1.2 MB
- Stars: 1,463
- Watchers: 38
- Forks: 183
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - ios-architecture - A collection of iOS architectures - MVC, MVVM, MVVM+RxSwift, VIPER, RIBs and many others. (Architecture Patterns)
- awesome-ios-architecture - ios-architecture - MVC, MVVM, MVVM+RxSwift, VIPER, RIBs and many others (Uncategorized / Uncategorized)
- awesome-ios-star - ios-architecture - A collection of iOS architectures - MVC, MVVM, MVVM+RxSwift, VIPER, RIBs and many others. (Architecture Patterns)
- awesome-develop-reference - https://github.com/tailec/ios-architecture
- fucking-awesome-ios - ios-architecture - A collection of iOS architectures - MVC, MVVM, MVVM+RxSwift, VIPER, RIBs and many others. (Architecture Patterns)
- fucking-awesome-ios - ios-architecture - A collection of iOS architectures - MVC, MVVM, MVVM+RxSwift, VIPER, RIBs and many others. (Architecture Patterns)
README
ios-architecture
WIP
👷 🧱 🧰 🛠️
Demystifying MVC, MVVM, VIPER, RIBs and many others
A collection of simple one screen apps to showcase and discuss different architectural approaches in iOS
Built with ❤︎ by
Pawel Krawiec
## Apps
| Multi-screen examples | Single screen examples |
| ------------- | ------------- |
| ![app-ui](multiscreen-ui.gif) | ![app-ui](app-ui.gif)|## Architectures
This repository hosts each sample app in separate directory.:star: Click the title of example to see detailed README information about specific architecture.
### Multiple screens app examples
🔒 ** If you want to login, use username `iostest` and password `test`.***If you're a [themoviedb](themoviedb.com) user, please use your own account and API key!*
| Example | Description |
| ------------- | ------------- |
| [tmdb-mvvm-rxswift-pure](tmdb-mvvm-rxswift-pure) | Uses [RxSwift](https://github.com/ReactiveX/RxSwift) and observables as binding mechanism between `ViewController` and `ViewModel`. Also, it uses simple navigator pattern for transitions between screens. (README in progress) |### Single screen app examples
The purpose of having examples with single page applications is highlighting connection between view code and business logic code.| Example | Description |
| ------------- | ------------- |
| [mvc](mvc) | Standard MVC pattern recommended by Apple. Uses composition design pattern to make `ViewController` smaller. (README in progress) |
| [mvp](mvp) | Standard MVP pattern. (README in progress) |
| [mvvm-rxswift-pure](mvvm-rxswift-pure) | Uses [RxSwift](https://github.com/ReactiveX/RxSwift) and observables as binding mechanism between `ViewController` and `ViewModel`. |
| [mvvm-rxswift-functions-subjects-observables](mvvm-functions-subjects-observables) | Uses [RxSwift](https://github.com/ReactiveX/RxSwift) and observables as outputs from `ViewModel`. `ViewModel` inputs are defined as subjects wrapped in functions. |
| [mvvm-rxswift-subjects-observables](mvvm-rxswift-subjects-observables) | Uses [RxSwift](https://github.com/ReactiveX/RxSwift) with observables as `ViewModel` outputs and subjects as `ViewModel` inputs. |
| [mvvm-closures](mvvm-closures) | Binds `ViewController` and `ViewModel` using closures and swift functions (README in progress) |
| [rxfeedback-mvc](rxfeedback-mvc) | Uses RxFeedback in MVC architecture (README in progress) |
| [viper](viper) | Uses VIPER architecture (README in progress) |### Examples in progress
| Example | Description |
| ------------- | ------------- |
| reactorkit | In Progress |
| mvvm+rxfeedback | In Progress |
| mvvm-reactive-swift | In Progress |
| reswift | In Progress |
| viper-rxswift | In Progress |
| ribs | In Progress |## Sample apps
Apps in this repository are split into 2 groups - single screen and multiscreen.Simple one screen apps aim to be simple enough that you can understand crucial bits about given architecture (i.e. bindings between `ViewModel` and `ViewController` in MVVM examples).
However, some other architectures require more complexity (i.e. RIBs architecture) and this is the reason of having multiscreen examples in this project.#### Single screen app
Single screen app is a simple list of repositories fetched from GitHub and a text field that makes queries for new data.#### Multiscreen app
Multiscreen app is a simple [themoviedb](themoviedb.com) client.
It lets user to authenticate, view popular movies/tv shows or actors and see details about each movie. Also, it has a search screen that allows you to browse movies or actors.## Open in Xcode
Clone the repository:`git clone [email protected]:tailec/ios-architecture.git`
Go to example directory, for example:
`cd mvvm-pure-swift`
Install pods:
`pod install`
**Note:** Some of the examples don't use external libraries so `pod install` is not required.
## Licence
MIT.