アプリにコンパスを統合していますが、回転中の画像表示の遅延が問題です。どうすればこの問題を解決し、うまく回転するアップルのアプリのようにできますか?
ここに私が使用しているコードがあります:
float heading = -1.0f * M_PI * degree / 180.0f;
[UIView animateWithDuration:1.0f delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
self.compassImageView.transform = CGAffineTransformMakeRotation(heading);
} completion:nil];
コンパスは次のとおりです。