I use the following code to install contentInsetfor mine tableView.
self.scrollView.contentInset = UIEdgeInsetsMake(109, 0, 44, 0);
But this calls the delegate method UIScrollView scrollViewDidScroll:.
Is this the expected behavior? If so, is there a workaround to avoid this situation?
Thanks in advance.
source
share