LSCTableView icon indicating copy to clipboard operation
LSCTableView copied to clipboard

The scroll indicator is disappeared when scrolling down/up

Open flypigz opened this issue 11 years ago • 1 comments

anyone know how to fix this?

flypigz avatar Jan 23 '14 10:01 flypigz

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.

flypigz avatar Jan 23 '14 10:01 flypigz