I have a looping scrollView but I want the user to be able to speed up the scrolling by interacting with the scrollView (ie scrolling with their finger) if they choose. Do I have to do extra work to acheive this as at the moment the animated scrolling takes priority over the users interaction and slows the scroll down dramatically. Has anyone done something similar? As an example Im looking to acheive as similar affect to that used in the about screen on the angry birds game?
Many thanks
Here us the code for basice animation of the scroll view
[UIView beginAnimations:@"scroll " context:nil];
[UIView setAnimationDuration:15];
[scrollView setContentOffset:CGPointMake(0, 600) animated:NO];
[UIView commitAnimations];
As soon as the user tries to scroll, the scrollView slightly scrolls (it moves very slightly), then stops the user scroll action and continues with the animated scroll? So the overall appearance is as follows :
1.animating scroll 2. user tries to scroll and animation appears to stick 3. when user ends scroll animation continues Any thoughts?
Many thanks again.