EDIT: Thanks to everyone who tried to help, I was trying to reuse two UIScrollViews to save some time. But it appears the UIScrollView approach won't save me any time, so I'm coding the view entirely by hand.
I've got two UIScrollView's, one who can only scroll horizontally and one vertically, who overlap at a part of the screen.
----- | | | | | | | | |--+---+----------| | | A | | |--+---+----------| | | | | -----
I'd like one scrollview to handle the horizontal swipe gestures in area 'A', and the other the vertical ones, but I can't seem to get this to work.
Anyone having any idea on how to approach this?