具有不同方向的 UITabbar 应用程序
我有一个 iPad TabBarApplication。我对 TabbarController 进行了子类化,以使应用程序对方向更改做出反应:
@implementation FrankenlandTabBarController
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (
interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight
);
}
@end
现在的问题是,我不希望我的 tabbarapp 的所有视图控制器都处于这个方向。
在单个控制器中覆盖 shouldAutorotateToInterfaceOrientation
方法不会产生任何效果。
有什么想法吗?
谢谢!
i've got a iPad TabBarApplication. i subclassed the TabbarController to make the Application react to a orientation change:
@implementation frankenlandTabBarController
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (
interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight
);
}
@end
the problem now is, that i dont want ALL viewcontrollers of my tabbarapp in this orientations.
overwriting the shouldAutorotateToInterfaceOrientation
method in a single controller does not have any effect.
any ideas?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可能更改 tabBar 中一个视图的方向而不更改另一个视图的方向。如果指定了 TabBar,则所有子视图(选项卡)必须具有相同的方向外观。您必须在每个 ViewController 和 TabBarController 中设置方向。
It's not possible to change the orientation for one view in a tabBar and not for another. If a TabBar is specified then all the subviews (tabs) must have the same orientation appearance. You must set the orientation in each ViewController and in the TabBarController.