Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Architecture.md #571

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions Architecture.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
App Architecture This app uses the MVC (Model View Controller) Architechture pattern.

* Current
* Project
* Structure
* Frameworks
* Products
* Susi
* Youtube-Player
* Localization
* Assets
* Controllers
* Custom
* Views
* Helpers
* Model
* SnowboyFiles
* Shimmer
* Storyboards
* Supporting Files
* SusiUITests
* Pods

Presentation Logic
* Model : The Model contains only the pure application data, it contains no logic describing how to present the data to a user.
* View : The View presents the model’s data to the user. The view knows how to access the model’s data, but it does not know
what this data means or what the user can do to manipulate it.
* Controller : The Controller exists between the view and the model. It listens to events triggered by the view (or another external
source) and executes the appropriate reaction to these events. In most cases, the reaction is to call a method
on the model. Since the view and the model are connected through a notification mechanism, the result of this
action is then automatically reflected in the view.

Useful Resources
* [MVC: Model, View, Controller](https://www.codecademy.com/articles/mvc)
* [MVC Architecture] (https://www.tutorialsteacher.com/mvc/mvc-architecture)
* [Model-View-Controller - Apple Developer ](https://developer.apple.com/library/archive/documentation/General/Conceptual/DevPedia-CocoaCore/MVC.html)