I am building a ipad application. when the applications starts i show it in landscape Right mode. But as soon as the application starts I get this message
T
The problem is that your app is using one of these methods, which were deprecated in iOS 5.0:
didAnimateFirstHalfOfRotationToInterfaceOrientation:
willAnimateFirstHalfOfRotationToInterfaceOrientation:duration:
willAnimateSecondHalfOfRotationFromInterfaceOrientation:duration:
You need to modify your view controllers to override willAnimateRotationToInterfaceOrientation:duration:
instead, and to not override any of the "HalfOfRotation" methods.