Garbage remains on scrollView while call refreshData.
Opened this issue · 3 comments
dombesz commented
I experienced that garbage remains on the scrollView if you call refreshData.
The scrollview is not cleaned up while refreshing. I suggest to add these lines to refreshData method.
for(UIView *subview in [self.scrollView subviews])
if([subview isKindOfClass:[UIView class]])
[subview removeFromSuperview];
markcerqueira commented
Thanks! Worked like a charm! Have you considered forking repo then requesting it be pulled back in?
mzygar commented
Thanks! Been fighting with that for hours ;)