que haber enmascarado una imagen como esta:CALayer con la animación de rotación
UIView *maskImage; maskImage = [[UIView alloc] init];
maskImage.backgroundColor = UIColorFromRGB(FTRMaskColor);
maskImage.frame = newFrame;
CALayer *theLayer = [CALayer layer];
theLayer.contents = (id)[[UIImage imageNamed:@"image.png"] CGImage];
theLayer.frame = newFrame;
maskImage.layer.mask = theLayer;
Funciona bien, pero el principal problema es que si quiero girar el mi Ipad, la animación de rotación de la vista o la capa (I no estoy muy seguro) no funciona. Gira sin animación. ¿Podrías ayudarme, por favor?
Basta con aplicar la animación de rotación - [Cómo hacer una animación Girar] (http://stackoverflow.com/questions/6075696/how-to-make-a-rotate-animation) – beryllium