TheMiss
TheMiss

Reputation: 43

how to create horizontally scrollable tableview and collectionview using swift 3

Hello all I'm trying to implement scrollable collection view along with tableview.

Please find the attached images this is exactly what I'm trying to implement.

image1. image2.

but I can't figure out what layout would I use in order to achieve this goal, any input/tutorial would be appreciated.Thank you.

Upvotes: 2

Views: 1015

Answers (1)

santak
santak

Reputation: 327

Imageview list for category is basically a carousel control. So to achieve that you can check following two third party implementation. This will help you out.

https://github.com/nicklockwood/iCarousel

https://github.com/robertrr61/Image-Carousel

Otherwise you can also create your own control using Scrollview and image view with a little bit customization.

Upvotes: 2

Related Questions