I have a UIViewController
that should be capable of displaying tableView
s with multiple data sources. The UITableView
spans about half the size of the screen, and there is and up and down button that allows you to go through different data. Everytime the up and down button is hit, I'd like to ultimately use UIViewAnimationTransitionCurlDown
or something similar to display the next UITableView
.
The question is: do I need multiple UIViewControllers
to do this, with a tableView
embedded in each one? Should I just create one instance of UITableView
and change its data source when an up or down button is hit? If it's only one instance of UITableView
, how do I manage to get a curl transition over the portion of the screen it takes up to make it look like a new tableView
is coming in?