仅旋转接口 180º
我只想将我的应用程序旋转 180°。所以,我不会在纵向模式下使用它。
我的代码是这样的:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return NO;
}
我该怎么做?
编辑:
我不知道为什么,但它停止工作了。有什么想法吗?即使我设置返回YES
I just want to rotate my app aways 180º. So, I won't get it in portrait mode.
My code is like this:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return NO;
}
How can I do it?
EDIT:
I dont know why, but it stoped working. Any ideas? Even when i set return YES
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将使您的视图控制器只能处于横向方向。
UIInterfaceOrientationIsLandscape()
文档。That will make it so your view controller can only be in landscape orientations.
UIInterfaceOrientationIsLandscape()
documentation.此方法的返回值确定是否允许旋转到interfaceOrientation。因此,您可以检查interfaceOrientation是否为横向,如果是则返回YES。
The return value of this method determines whether rotation to interfaceOrientation should be allowed. Therefore, you could check whether interfaceOrientation is landscape, and return YES only if so.
我不知道为什么,但我的 TabBar 项目没有设置 NIB 名称。这就是导致错误的原因。
I don't know why, but on of my TabBar items wasn't set with a NIB name. That's what was causing the error.