1

我正在开发一个应用程序(我的第一个),它基本上是一个 TabBar 应用程序。更准确地说,有: - 登录视图控制器 - 选项卡栏控制器(登录完成时) - 当 TabBar 的第一个项目从纵向切换到横向时使用的横向视图控制器。

因此,当我在第一个选项卡中时,我需要能够移动到横向视图以显示其他一些数据。在我的标签栏控制器中,我实现了这些方法:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if([self selectedIndex] == 0)
    return YES;

return NO;
}


- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];

// Get AppDelegate
MyAppDelegate *delegate = [[UIApplication sharedApplication] delegate];

 if (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
 {
     // Remove TabBarView and add graph Landscape View   
     [self.view removeFromSuperview];
     [delegate setSubViewLandscapeViewController];
 }
}

在委托中,我实现了 setSubViewLandscapeViewController 和 setSubViewTabBarController:

- (void)setSubViewTabBarViewController {    
[window addSubview:[tabBarController view]];
}

- (void)setSubViewGraphLandscapeViewController {
[window addSubview:[landscapeViewController view]];
}

我希望landscapeViewController 仅在横向模式下显示,然后(在我的landscapeViewController 中):

- (void)viewWillAppear:(BOOL)animated {
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];
}
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {

NSLog(@"willRotateToInterfaceOrientation");
}

其中一部分工作正常,我的意思是从纵向切换到横向是可以的(当我在第一个选项卡中时),tabbarcontroller 从 SuperView 中删除,横向视图被添加为子视图。

问题是......我不知道如何切换回纵向模式(然后使用我的委托的 setSubViewTabBarViewController 加载前一个控制器,即 tabBar 一个)。当我实际从横向视图中移动设备时,似乎没有任何 willRotateToOrientation、willRotateFromOrientation、.. 被触发...

简而言之,当我在横向视图中时,我不知道该怎么做才能回到标签栏视图......一旦我进入这个视图,我就有点卡在横向视图中了。

非常感谢你的帮助,

卢克

4

2 回答 2

0

查看示例文件夹中 CPTestApp-iPhone 中的饼图。它通过在旋转后实现-(void)didRotateFromInterfaceOrientation:和调整图形大小来处理旋转。

于 2010-06-30T23:42:27.773 回答
0

好吧,我设法解决了这个问题。事实上,在从纵向移动到横向时,我从窗口子视图中删除了 tabbarcontroller 并添加了 Landscapeviewcontroller。看来这不是正确的做法。相反,我将 LandscapeViewController 添加为 tabbarcontroller 的子视图,并在从横向变为纵向时将其删除。但是我仍然有一个问题,横向视图的 y 位置在我连续进行几次旋转时似乎会发生变化....问候,Luc

于 2010-07-05T07:32:59.913 回答