I haven\'t tried that yet, but I assume that I would have to disable scrolling of the parent scroll view as soon as I know that the user will want to scroll in the child scr
UIScrollView has a property called scrollEnabled
, which you can set to NO
to disable scrolling in your parent scroll view.
I haven't tried it yet, but you may just find that it Does The Right Thing, i.e., the inner scroll view scrolls until it can't scroll any more, at which point the outer scroll view scrolls.