检测UIScrollView上的用户触摸

时间:2012-03-07 21:19:05

标签: iphone objective-c ios ipad

我基本上想要检测用户何时滚动并从屏幕上移开他的手指。最简单的是什么?我在考虑使用:

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
{
    NSLog(@"TOUCH ENDED");
}

但我把它放在我的UIViewController中,但它不会被称为

1 个答案:

答案 0 :(得分:6)

如何使用 UIScrollViewDelegate 功能

(void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate

当用户在拖动滚动视图后抬起手指时会调用此方法。 见这里:UIScrollViewDelegate Documentation