UIInterfaceOrientation随Header一起旋转

时间:2011-02-15 06:58:59

标签: iphone cocoa-touch uiinterfaceorientation

当我将模拟器从纵向旋转到横向时,标题不会旋转。我想使用UIInterfaceOrientation旋转标题以及视图旋转。enter image description here

1 个答案:

答案 0 :(得分:1)

@renuga我认为您需要在视图控制器中实现此方法。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    if(toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
        return YES;
    if(toInterfaceOrientation == UIInterfaceOrientationPortrait)
        return YES;
    return NO;
}

转到IB并单击下面显示的箭头。

enter image description here

您需要调整标签栏的位置