I have a UIScroll View that scrolls vertically, each cell contains a UIScrollView that scrolls horizontally. I created it using information in this tutorial I want the Horizontal table to scroll page by page (the same way your home screen would scroll if you have multiple pages of apps. Is this possible in a UITableView?
Thanks for the help
So you have a UITableView with multiple cells and those are holding UIScrollViews that scroll horizontally, right?
You can set pagingEnabled for a UIScrollView like this:
Just make sure the contentSize of the UIScrollView is at least 2x bigger then it’s frame width, so that you can actually ‘page’ your way around 🙂