iOS 用の Facebook API を使用していますが、ログインするとこのエラー メッセージが表示されます
Two-stage rotation animation is deprecated. This application should use the smoother single-stage animation.
問題は、iOS 5.0 で廃止された次のメソッドのいずれかをアプリが使用していることです。
didAnimateFirstHalfOfRotationToInterfaceOrientation:
willAnimateFirstHalfOfRotationToInterfaceOrientation:duration:
willAnimateSecondHalfOfRotationFromInterfaceOrientation:duration:
代わりにオーバーライドするようにView Controllerを変更しwillAnimateRotationToInterfaceOrientation:duration:
、「HalfOfRotation」メソッドをオーバーライドしないようにする必要があります。