Skip to content

Instantly share code, notes, and snippets.

@jarinudom
Created March 29, 2009 22:32
Show Gist options
  • Save jarinudom/87545 to your computer and use it in GitHub Desktop.
Save jarinudom/87545 to your computer and use it in GitHub Desktop.
- (void)scrollViewDidEndDecelerating:(UITableView *)tv {
if([tv isKindOfClass:[UITableView class]]) {
// do some stuff
}
}
- (void)scrollViewDidEndDragging:(UITableView *)tv willDecelerate:(BOOL)decelerate {
if ([tv isKindOfClass:[UITableView class]] && !decelerate) {
// do some stuff
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment