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!