How to make a collection view similar to the Apple News App? [on hold]
I am trying to create an app that is similar to the layout in the Apple News app on iOS 10. There are different sections like Top Stories
, For you
, etc. I have placed a pic of the For You
Section below:
My question is that each section (for example For you
in the above picture) has one big article on the top (the 12 billion gallons of water article) and then 2 horizontal articles (Ron howard and google cloud) and finally two vertical articles (philando castile and Daniel Day-lewis). How would one go about achieving this?
How I thought about this is that you have one main UICollectionView Cell. Then inside that main cell you have an additional 3 different cells (one for the big article, one for the vertical articles, and one for the horizontal articles). Is this a good way to achieve this?