SVPullToRefresh
SVPullToRefresh copied to clipboard
When contentsize < scrollview size infinite scroll gets triggered when doing pull to refresh
The fix:
Line 197 UIScrollView+SVInfiniteScrolling.m
CGFloat scrollOffsetThreshold = MAX(scrollViewContentHeight-self.scrollView.bounds.size.height,0);
resolve my problem.