When the app first starts I make sure only one scroll view responds to this, like this:
And then in the delegate for my tableView I have this:
The NSLog is not being recorded, which means the fact I've touched the status bar isn't making it to the delegate.
I know that my delegate is set up properly because it responds to other delegate methods properly (like whether or not rows should be allowed to be moved.)
Suggestions?
Code:
tableView.scrollsToTop = YES;
keyboard.scrollsToTop = NO;
And then in the delegate for my tableView I have this:
Code:
- (BOOL)scrollViewShouldScrollToTop:(UIScrollView *)scrollView
{
NSLog(@"Asked whether the scroll view should scroll to top.");
return YES;
}
The NSLog is not being recorded, which means the fact I've touched the status bar isn't making it to the delegate.
I know that my delegate is set up properly because it responds to other delegate methods properly (like whether or not rows should be allowed to be moved.)
Suggestions?
Last edited: