Ich versuche, eine 360-Drehung einer Ansicht, aber bei einer Neigung von 45 Grad zu tun.iOS Animate Rotation in einem Winkel
Gefällt Ihnen dieses
kann ich nicht, es zu tun, herauszufinden.
Bisher habe ich es geschafft, diese
CABasicAnimation* animation = [CABasicAnimation
animationWithKeyPath:@"transform.rotation.y"];
animation.fromValue = @(0);
animation.toValue = @(2 * M_PI);
animation.duration = 1;
[self.layer addAnimation:animation forKey:@"rotation"];
Was es auf, es ist y-Achse dreht, aber was ich will, ist für diese Y-Achse auf 45 Grad gekippt werden, bevor sie gesponnen wird.