I think the title explains it all. I want to be notified when a user scrolls to the top of a tableview.
I've tried the following with no luck and even added a UIScrollViewDelegate to the .h file.
- (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView{
NSLog(@"ScrolledToTop");
}
Thanks!
Edit: I can get it to call if I press the status bar. But not if I scroll to the top. Weird... could it have something to do with the tableview bouncing when it reaches the top?