I\'ve implemented this method in my code to know when an interface orientation change will occur:
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrient
Even I faced a similar issue and had to override it in the tabbarcontroller derived class to get this to work:
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[_tabBarConroller willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
}
Hope this helps!!