使用tabbar问题的方向

时间:2011-09-18 17:28:13

标签: iphone ios sdk tabbar

我的tabbar应用程序出了问题.. 我的应用程序可以改变方向但是当我在风景中(例如)我的第一个标签时,一切都很好,一切都是替换,但如果我留在风景中,我进入另一个选项卡,该应用仍然在景观视图(这是好的)但是对象(标签,按钮,图像,......)不应该是......

为了检查设计是横向还是纵向,我使用

    -(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
   If (toInterfaceOrientation == UIInterfaceOrientationPortait)
   { 
    image1.hidden = NO;
   }
  else
   {
    image2.hidden = YES;
   }
}

它可以工作,但是当我想要去另一个时我必须改变方向...... 希望有人可以帮助我..

谢谢:)

1 个答案:

答案 0 :(得分:1)

确保选项卡中的所有视图控件都在

中返回“横向”方向
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation