Now that we've laid out our Daily List cell, we can go ahead and pop in a controller to replace the ugly red blocks we're seeing. This controller will be responsible for rendering a group of cells that represent each app in our list. We'll be fetching this list using a prebuilt Service call and then reloading our UICollectionView component.
Comments (3)
gametime010
3 years ago
First!
Juanpablo Macias
3 years ago
Swift no longer allows embedding CollectionViews into stack views. Do you know of a workaround?
Juanpablo Macias
3 years ago
Also, the time stamp in your comment section (above) says 4 months ago when I just posted today (March 30, 2020).
Thanks again for all you do Prof. Brian!
Brian Voong
3 years ago
Juanpablo Macias
3 years ago
Never mind... just needed to include a flow layout! oops
Eric Agredo
3 years ago
Hey Brian, for the creation of TodayMultipleAppsController, why did you decide to use a CollectionView over a TableView? The apps in that controller could be a stackView within a cell of a TableViewController.