UITabBar 自动旋转问题
Posted
技术标签:
【中文标题】UITabBar 自动旋转问题【英文标题】:UITabBar autorotate issue 【发布时间】:2012-01-25 18:32:14 【问题描述】:我想知道为什么基于UITabBarController
的 iPad 项目在我指定某些选项卡应在横向模式下自动旋转而另一个将在横向和纵向模式下自动旋转时不会自动旋转。
我用过
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
对于所有UIViewController
并指定是否为横向return YES;
否则为return NO;
另一方面,如果UIViewController should rotate in landscape and portrait i've just
return YES;` 总是。
提前致谢。
【问题讨论】:
【参考方案1】:对于您在 tabbarcontroller 中加载的所有 UIViewController
,您必须在
True
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
注意: 除非它包含的所有控制器也自动旋转,否则标签栏控制器不会自动旋转。
来自Rotate one UIViewController in UITabBar application -->>
没有简单的方法让一个视图处于横向模式,而其他视图处于横向模式,也没有一种简单的方法可以以编程方式切换到横向模式。
一种可能的方法是使用 CGAffineTransform 在 viewWillAppear 中转换您的视图(即,在视图显示之前):
- (void)viewWillAppear:(BOOL)animated;
//-- Adjust the status bar
[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeRight;
//-- Rotate the view
CGAffineTransform toLandscape = CGAffineTransformMakeRotation(degreesToRadian(90));
toLandscape = CGAffineTransformTranslate(toLandscape, +90.0, +90.0 );
[self.view setTransform:toLandscape];
【讨论】:
但我想要一些 UIViewController 只是横向的,我不希望它旋转到纵向。 它给了我一个错误“架构 armv7 的未定义符号:” 不知道为什么它会给出这个错误..但我认为你应该针对这个问题在 SO 上发布一个不同的问题以上是关于UITabBar 自动旋转问题的主要内容,如果未能解决你的问题,请参考以下文章