我的故事板有一个标签栏控制器。当设备旋转时,我想移动到不同的屏幕,即侧面不显示相同的布局,但显示完全不同的东西。
在iOS 5中,我使用UITabBarControllerDelegate
中的以下代码实现了这一点- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
{
if(interfaceOrientation == UIInterfaceOrientationLandscapeRight)
{
[self performSegueWithIdentifier: @"toGraph" sender: self];
}
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
在iOS 6中,不再调用此方法。旋转视图时我可以看到的所有方法都处理,但设备旋转时却没有。
提前致谢。
答案 0 :(得分:2)
所以我真的不应该寻找视图轮换,而是设备轮换。在发现UIDevice类之后,我能够使用AlternateViews示例代码(只是在文档管理器中搜索AlternateViews)来获取我需要的所有内容。
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.delegate = self;
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationChanged:)
name:UIDeviceOrientationDidChangeNotification object:nil];
}
- (void)orientationChanged:(NSNotification *)notification
{
// We must add a delay here, otherwise we'll swap in the new view
// too quickly and we'll get an animation glitch
[self performSelector:@selector(showGraphs) withObject:nil afterDelay:0];
}
- (void)showGraphs
{
UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation;
if (UIDeviceOrientationIsLandscape(deviceOrientation) && !isShowingLandscapeView)
{
[self performSegueWithIdentifier: @"toGraph" sender: self];
isShowingLandscapeView = YES;
}
else if (deviceOrientation == UIDeviceOrientationPortrait && isShowingLandscapeView)
{
[self dismissModalViewControllerAnimated:YES];
isShowingLandscapeView = NO;
}
}
答案 1 :(得分:0)
iOS 6中的自动旋转发生了变化。这是关于该问题的Apple开发论坛上的一个主题:https://devforums.apple.com/thread/166544?tstart=30
以下是一些主题: http://www.buzztouch.com/forum/thread.php?tid=41ED2FC151397D4AD4A5A60¤tPage=1
https://www.buzztouch.com/forum/thread.php?fid=B35F4D4F5EF6B293A717EB5&tid=B35F4D4F5EF6B293A717EB5
这些与您的问题最相关的帖子似乎如下:
搞定了......对于标签式应用,在appDelegate中替换了这一行: [self.window addSubview:[self.rootApp.rootTabBarController view]];
用这个: [self.window.rootViewController = self.rootApp.rootTabBarController view];
要获取非标签应用,请替换此行: [self.window addSubview:[self.rootApp.rootNavController view]];
用这个: [self.window.rootViewController = self.rootApp.rootNavController view];