画像を時計回りに回転させて縮小することで、画像をアニメーション化しようとしています。ここまでは反時計回りのみです。Z に沿って回転する値/キー パスに正と負の両方の値を試しましたが、何も変わりませんでした。
[window addSubview:splashView];
[window bringSubviewToFront:splashView];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:2.0];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(startupAnimationDone:finished:context:)];
splashView.frame = CGRectMake(160, 284, 0, 0);
[splashView.layer setValue:[NSNumber numberWithInt:-360]
forKeyPath:@"transform.rotation.z"];
[UIView commitAnimations];