Jatin
Jatin

Reputation: 1708

Multiple scrollable subviews/tableviews

I am working on an ipad app where I need the functionality similar the ipad screen shots in this app:

TSN: iPad Edition

basically where I could scroll through many subviews on one single screen, even some subviews could come on the top of each other and then can be closed.

the first idea which came to mind was to insert multiple subviews in a UIScrollView and then do a simple scroll but how do they scroll on top of each other etc. see the picture in the middle where it has 2 subviews open and they are scrollable on top of each other

Upvotes: 2

Views: 126

Answers (1)

giampaolo
giampaolo

Reputation: 6934

Your screenshot seems very similar to CLCascade library. You can find it in github at address: https://github.com/appunite/CLCascade. In the linked image there's a screenshot of the example.

enter image description here

beware that trunk is not so up to date, take a look at branches to see what fits better your needs.

Upvotes: 2

Related Questions