【发布时间】:2012-01-28 09:16:13
【问题描述】:
我想检测 mytable 视图是否已滚动,我尝试了所有类似这样的触摸事件:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesBegan:touches withEvent:event];
//my code
}
但似乎所有触摸事件都不会响应滚动,而是仅在单元格被触摸、移动等时才会响应
有没有办法检测 UITableView 的滚动事件?
【问题讨论】:
标签: iphone objective-c ios xcode uitableview