It is possible that use childViewControllers in UIScrollview? I have known that in ios5 we can use childViewControllers to control several views in screen.
Can i use childViewControllers to control each view in uiscrollview? I want an effect like windows phone 7 panorama, and each child controller control a page. And I don't know how to do that.
One more question: I'm trying this code, and got an issue.
[self addChildViewController: myTableViewController];
[scrollView addSubview:[[self.childViewControllers objectAtIndex:1] view]];
The table view can display, but when i touch the row, it can't push to detail view, the table view delegate methods didselected didn't work.
someone can help me? Thanks so much.