我正在构建一个 ipad 应用程序。当应用程序启动时,我以横向右模式显示它。但是,一旦应用程序启动,我就会收到此消息
Two-stage rotation animation is deprecated. This application should use the smoother single-stage animation
我在所有课程中都使用了这种方法
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
我还在 plist 文件中将支持的界面方向 (iPad) 设置为横向。如何解决此警告消息?