0

enter image description here

Is there any way to achieve a view like this in ios? There will be infinity scrolling in each row, how to achieve something like this? Is it using collectionview? and How can it be done? Any suggestion?

H. Pauwelyn
  • 13,575
  • 26
  • 81
  • 144
bobo
  • 121
  • 2
  • 10

2 Answers2

1

You need to use table view and in every cell of table view you need to use a collection view please look on this Link and this Link as well

Matloob Hasnain
  • 1,025
  • 6
  • 21
1

OPTION 1:

You can use one uicollectionview for each sub-category that will scroll horizontally using UICollectionViewScrollDirectionHorizontal.

Here is a link that may be useful.

OPTION 2:

You can use one single uitableview for the whole page with header (section) saying the sub-category title and 'view all' button.

To scroll uitableview horizontally please check these links: Link 1 and Link 2.

OPTION 3:

You can try GitHub example PTEHorizontalTableView. Use this tableview with header.

Community
  • 1
  • 1
Arnab
  • 4,216
  • 2
  • 28
  • 50