In one of my view controller (using Storyboard and ARC mode), i add two scrollView methods?
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
}
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
}
Both of them are not work on my app.
I already add scroll view as sub view of self.view
But, why these scroll view methods are not work?
Please, give me some ideas.