我正在为 ios 使用 facebook api,但是当我登录时,我收到了这个错误消息
Two-stage rotation animation is deprecated. This application should use the smoother single-stage animation.
问题是您的应用程序正在使用以下方法之一,这些方法在 iOS 5.0 中已被弃用:
didAnimateFirstHalfOfRotationToInterfaceOrientation:
willAnimateFirstHalfOfRotationToInterfaceOrientation:duration:
willAnimateSecondHalfOfRotationFromInterfaceOrientation:duration:
您需要修改视图控制器以替代willAnimateRotationToInterfaceOrientation:duration:
,而不是覆盖任何“HalfOfRotation”方法。