You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
scrollOffsetThreshold should consider originalBottomInset. So I think scrollOffsetThreshold += self.originalBottomInset; should be inserted after CGFloat scrollOffsetThreshold = scrollViewContentHeight-self.scrollView.bounds.size.height;
Otherwise, when scrollview has bottom inset, supposed it's a positive number, and it currently reaches to the end, state will still be loading even though user scrolls up.
The text was updated successfully, but these errors were encountered:
scrollOffsetThreshold
should consideroriginalBottomInset
. So I thinkscrollOffsetThreshold += self.originalBottomInset;
should be inserted afterCGFloat scrollOffsetThreshold = scrollViewContentHeight-self.scrollView.bounds.size.height;
Otherwise, when scrollview has bottom inset, supposed it's a positive number, and it currently reaches to the end, state will still be loading even though user scrolls up.
The text was updated successfully, but these errors were encountered: