こんにちは、一部が画面上にあり、一部が画面外にある UIImageView があります。
画面外のポイント (ビューの中心) を中心にビューを回転させたい。
どうすればいいですか?
fullRotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
fullRotationAnimation.fromValue= [NSNumber numberWithFloat:0.0f];
fullRotationAnimation.toValue = [NSNumber numberWithFloat:2 * M_PI];
fullRotationAnimation.duration = 4;
fullRotationAnimation.repeatCount = 1;
[self->greyRings.layer addAnimation:fullRotationAnimation forKey:@"360"];
現時点ではそのコードを使用していますが、画面の中央で回転するだけです。
アイデアはありますか?