Making two UIScrollViews follow each others scrolling
Set the delegate of scroll view A to be your view controller... then have...- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGPoint offset = scrollViewB.contentOffset;
offset.y = scrollViewA.contentOffset.y;
[scrollViewB setContentOffset:offset];
}