我正在开发一个应用程序(我的第一个),它基本上是一个 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、.. 被触发...
简而言之,当我在横向视图中时,我不知道该怎么做才能回到标签栏视图......一旦我进入这个视图,我就有点卡在横向视图中了。
非常感谢你的帮助,
卢克