views:

24

answers:

1

In a UIView, is it possible to draw a drop shadow beyond a clip path? I tried to use CGContextSetShadow() before clipping and it doesn't work.

A: 

No. It's the drawing, not setting the shadow, that actually draws shadows. All drawing is clipped to the clip path.

Make your clip bounds bigger.

tc.