我的 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 选项卡。任何帮助都会很棒。