こんにちは、iPhone でマップ ビューを使用しています。マップ ビューを回転させています。正しく回転しています。しかし、カスタム ピン (イメージビュー) が回転していません。
iPhone でマップ アプリケーションを実行すると、そのアプリで現在地の「v」字型の画像が表示され、マップビューの回転に従って回転します。
カスタム ピン アニメーション (回転) には以下のコードを使用しました。
// Setup the animation
[UIView beginAnimations: @"anim" context: nil];
[UIView setAnimationDuration:2.0];
[UIView setAnimationCurve:2.0];
//[UIView setAnimationRepeatCount:10];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDelegate:self];
[UIView commitAnimations];
//--------For animating imageview ---------------------
[annView addSubview:locaterImageView];
カスタム アプリで既定のピンを回転できますか?