Нужно вставить этот текст:
-(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
if (UIDeviceOrientationIsPortrait(toInterfaceOrientation)) {
NSLog(@"Portrait");
} else {
NSLog(@"Landscape");
}
}