estoy animando una vista UIImage
con este códigoCATransform3DRotate y UIImageView
CABasicAnimation *animation;
animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
animation.duration = 1;
animation.toValue = [NSNumber numberWithFloat:M_PI];
animation.fromValue = [NSNumber numberWithInt:0];
[square.layer addAnimation:animation forKey:@"rotation"];
Todo funciona bien, pero mi arsenal llevar a su posición original al final de la animación. Miré en las propiedades de capa y encontré:
[square.layer setTransform:CATransform3DRotate(HERE, -M_PI, 0, 0, 0)];
Y no sé qué escribir en lugar de "aquí". ¿Usted me podría ayudar por favor? ¡Muchas gracias!
Thnaks mucho Brad! – Pierre