I put some image views on scroll view. And when I drag this scroll view, I didn\'t have any problems.
But after I applied shadow effect to these image views, dragging th
I've had exactly the same problem. Drawing the shadow is a fairly costly multi-pass operation, so I can kind of understand it and I think the shadow is drawn continuously as you scroll. The only work-around I've found is to render the shadow manually into an image and display that image behind the images in the scroll. This seems to work well.