Ios 关于两阶段旋转动画的Xcode调试警告

Ios 关于两阶段旋转动画的Xcode调试警告,ios,xcode,rotation,warnings,Ios,Xcode,Rotation,Warnings,我的iPad应用程序使用(gcc)在下面的xcode调试器中输出以下警告。 这非常令人沮丧,因为我不知道如何调试它 Using two-stage rotation animation. To use the smoother single-stage animation, this application must remove two-stage method implementations. 我确实使用以下方法进行旋转更改 -(void)willAnimateRotationToInte

我的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

    }
我没有使用任何旧的两阶段方法

应用程序确实使用了一个根tabbarController,其中包含两个ViewController和一个navigationController选项卡。
任何帮助都会很好。

可能不是真正的警告或旧版本的副产品,因为当我在另一台运行最新xcode 4.3.3和iPad iOS 5.1的iPad上使用不同的mac电脑时,我不会收到警告(警告出现在使用iOS 4.3的xcode 4.2上)

还请注意,这些警告仅在设备本身上运行时出现,而不是在模拟器中出现


希望这对其他人有所帮助。

我开始怀疑这不是真正的警告或旧版本的副产品,因为当我在另一台iPad上使用不同的mac电脑时,我没有意识到这一点,而另一台iPad都运行最新的xcode 4.3.3和iPad iOS 5.1(警告出现在xcode 4.2和iOS 4.3上)…我自己可能会更回答这个问题,让其他人也可能遇到这个奇怪的问题。