¿Por qué masksToBounds = YES evita la sombra CALayer?

Con el siguiente fragmento, agrego un efecto de sombra paralela a uno de mis UIView. Lo que funciona bastante bien. Pero tan pronto como configuro la vistamasksToBounds propiedad aSI. El efecto de sombra paralela ya no se representa.

self.myView.layer.shadowColor = [[UIColor blackColor] CGColor];
self.myView.layer.shadowOpacity = 1.0;
self.myView.layer.shadowRadius = 10.0;
self.myView.layer.shadowOffset = CGSizeMake(0.0f, 0.0f);
self.myView.layer.cornerRadius = 5.0;
self.myView.layer.masksToBounds = YES; // <-- This is causing the Drop shadow to not be rendered
UIBezierPath *path = [UIBezierPath bezierPathWithCurvedShadowForRect:self.myView.bounds];
self.myView.layer.shadowPath = path.CGPath;
self.myView.layer.shouldRasterize = YES;

¿Tienes alguna idea sobre esto?

Respuestas a la pregunta(6)

Su respuesta a la pregunta