In my app I have a RootPageViewController which contains the UIPageViewController and one or more DetailPageViewController with a UITableView as a childview.
DetailPageViewController
/
RootPageViewController - DetailPageViewController
\
DetailPageViewController
On top of every DetailPageViewController is a little space where it should be possible to swipe and get to the next DetailPageViewController.
-------------------
| |
| | -> UIPageViewController should respond to pan's
| |
|-------------------| --------------------------------------------
| CellContent |
|-------------------|
| CellContent |
|-------------------| -> UIPageViewController should disable UIPageViewController pan's
| CellContent |
|-------------------|
| ... |
In the iOS 7 weather app is a scrollview with the whole weak forecast who somehow overwrites or disables the the pan of the UIPageViewController.
How can I recreate such behavior ?
Sorry for the missing screenshots