I have a category for UIScrollView to customize
I need to get a UIScrollView .
I'm trying to
UIScrollView *scroll = nil; for (UIView* subview in self.tableView.subviews) { NSLog(@"%i", self.tableView.subviews.count); if ([subview isKindOfClass:[UIScrollView class]]) { scroll = (UIScrollView *)subview;
But that will not work. How can I get a ScrollView ? Thanks
source share