作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将我的应用程序中的一个 View 锁定到 LandscapeRight。我使用的代码如下所示。
// To landscape
- (NSUInteger) supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscapeRight;
}
- (BOOL)shouldAutorotate {
return NO;
}
- (UIInterfaceOrientation) preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationLandscapeRight;
}
然而,它仍然在旋转。
我错过了什么吗?
最佳答案
我在这里回答这个问题:
Disabling rotation for current screen?
你应该使用:
- (BOOL)shouldAutorotate
{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
//Choose your available orientation, you can also support more tipe using the symbol |
//e.g. return (UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight)
return (UIInterfaceOrientationMaskLandscapeRight);
}
如果您返回 NO,则您的 viewController
不会进入 supportedInterfaceOrientations
方法。
关于ios - 在 iOS 7 的 Landspace 中锁定一个 UIview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23574373/
我正在尝试将我的应用程序中的一个 View 锁定到 LandscapeRight。我使用的代码如下所示。 // To landscape - (NSUInteger) supportedInterfa
我是一名优秀的程序员,十分优秀!