私の iPad アプリは、(gcc) を使用して以下の xcode デバッガーで次の警告を出力します。デバッグの仕方がわからないので、とてもイライラします。
Using two-stage rotation animation. To use the smoother single-stage animation, this application must remove two-stage method implementations.
回転の変更には次の方法を使用します
-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation duration:(NSTimeInterval)duration{
//with conditional statement like
if (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown){
//change images for portrait, redisplay any visible popovers
}else{
//change images for landscape, redisplay any visible popovers
}
私は古い2段階の方法を使用していません。
アプリは、2 つの viewControllers と 1 つの navigationController タブを持つルート tabbarController を使用します。どんな助けでも素晴らしいでしょう。