Если вы говорите об UITableview Orientation, то вы можете реализовать следующий код в своем классе viewcontroller для ориентации работы viewcontroller только в альбомной ориентации влево и вправо.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return (interfaceOrientation == UIDeviceOrientationLandscapeLeft || interfaceOrientation == UIDeviceOrientationLandscapeRight) ;
}
Если нет, пожалуйста, объясните свою проблему с помощью кода или изображения.