I basically wanted to detect when a user scrolls and removes his finger from the screen. What is the easiast for this? I was thinking of using:
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
{
NSLog(@"TOUCH ENDED");
}
but I put this in my UIViewController, but it isn’t get called
How about using the UIScrollViewDelegate function
This gets called when the user lifts the finger after dragging the scroll view.
See here: UIScrollViewDelegate Documentation