Intro to App Architecture | raywenderlich.com


This is a companion discussion topic for the original entry at https://www.raywenderlich.com/17493408-your-first-ios-and-swiftui-app-an-app-from-scratch/lessons/17

At the 3:19 mark in lesson 17, you were talking about the one way arrow between views and models. Did you mean to say “views not know about the views”? This was confusing to me.

He is saying that Views know the details of the Models,
but the Models don’t know much about the specific Views they are used in, and so they can be used again in other Views.
So you wouldn’t call a View from a Model, but you call a Model from a View.