私はiPadアプリケーションを構築しています。アプリケーションが起動すると、横向きの右モードで表示されます。しかし、アプリケーションが起動するとすぐに、このメッセージが表示されます
Two-stage rotation animation is deprecated. This application should use the smoother single-stage animation
私はすべてのクラスでこの方法を使用しました
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
また、サポートされているインターフェイスの向き (iPad) を plist ファイルで横向きに設定しました。この警告メッセージを解決するにはどうすればよいですか?