Is it possible that using childViewControllers in a UIScrollview? I knew that in ios5 we can use childViewControllers to control multiple views on the screen.
Is it possible to use childViewControllers to control each view in uiscrollview? I need an effect, such as Windows Phone 7 panorama, and each child controller controls the page. And I do not know how to do this.
One more question: I am trying to use this code and the problem.
[self addChildViewController: myTableViewController]; [scrollView addSubview:[[self.childViewControllers objectAtIndex:1] view]];
The table view may be displayed, but when I touch the row, it cannot click on the detailed view, the delegation methods of the table view didselected do not work.
can someone help me? Many thanks.
lancy source share