I have a scrollView that I'd like to programmatically move based on the delta, or change of another scrollView. So if my first scrollView moves down 10px, I need to get that number, and adjust the second scrollView down 10px, and allow them to be in different positions.

The only other way I've gotten it to work (thanks to someone else's post on here) is with this code:

[scrollView setContentOffset:offset animated:NO];

But that just makes them have the same XY coordinates, which isn't what I'm looking for.

Thanks for your help!

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Just use the delegate method

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView

To determine the value of each content offset when scrolling starts. Then each time scrolling is updated you can tell how much it has changed by, and adjust the other scroll view. It's just math.

link|improve this answer
Hey that makes sense! Thank you! Is there an optimal of programmatically setting the scrollView's position? – Jarom Jul 10 '11 at 3:27
@Jarom See scrollToRect method of UIScrollView – Rog Jul 10 '11 at 3:30
@Jarom I think the best way is using contentOffset, like you did before. You just have to do the math first. – jtbandes Jul 10 '11 at 3:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.