当我将模拟器从纵向旋转到横向时,标题不会旋转。我想使用UIInterfaceOrientation旋转标题以及视图旋转。
答案 0 :(得分:1)
@renuga我认为您需要在视图控制器中实现此方法。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
if(toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
return YES;
if(toInterfaceOrientation == UIInterfaceOrientationPortrait)
return YES;
return NO;
}
转到IB并单击下面显示的箭头。
您需要调整标签栏的位置