Reputation: 899
I need to process scroll event on UITableView before it is processed in scrollViewDidScroll method. Is there any way to do that?
Upvotes: 0
Views: 1170
Reputation: 9246
I used
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
This is much more convenient.
Upvotes: 1
Reputation: 10251
Set table.scrollview.delegate
to self
and override the scrollviewDidScroll
method. In the method do your processing before calling [super scrollViewDidScroll]
.
Upvotes: 1