Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amacou/MVPExample
https://github.com/amacou/MVPExample
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amacou/MVPExample
- Owner: amacou
- License: mit
- Created: 2016-02-22T03:20:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-23T02:19:29.000Z (over 7 years ago)
- Last Synced: 2024-06-06T14:34:14.054Z (7 months ago)
- Language: Objective-C
- Size: 8.96 MB
- Stars: 19
- Watchers: 2
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - MVPExample - MVPExample. (OOM-Leaks-Crash / Architecture Design Pattern)
- awesome-ios-architecture - MVPExample
README
# MVPExample
### このリポジトリはなに?
MVPのios実装のテストです
あくまでamacouが考えたMVPの実装です。もっと良いやり方がある気がするので、これを叩き台として成長させていきたい。
### MVPの実装にあたって
以下のように実装しています- `*View`, `*ViewController`はView層、`*Presenter`はPresentation層, その他はModel層とする
- ViewはUIKitのコンポーネントのようにAPIを通じて渡されたデータを表示する
- ViewはModelを扱わない
- PresenterはModelの値をViewのAPIを通じて表示する
- PresenterはViewで発生したイベントをハンドリングする