LSCTableView
LSCTableView copied to clipboard
The scroll indicator is disappeared when scrolling down/up
anyone know how to fix this?
I found the root cause, just replace below line
self addsubview:cell]
by:
[self insertSubview:cell atIndex:0];
this is because the scroll indicator is a subview of UIScrollView, and it should always above all other subviews.