- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的第一个 View Controller 是 LoginViewController。我正在尝试支持 iOS 6 上的自动旋转管理。
我已经实现了 shouldAutorotate 而不是 shouldAutorotateToInterfaceOrientation,如下所示:
-(BOOL)shouldAutorotate {
UIInterfaceOrientation toInterfaceOrientation = [[UIDevice currentDevice] orientation];
return [DeviceSupport isOrientationSupported:toInterfaceOrientation];
}
shouldAutorotate
在应用程序启动时被调用五次。 toInterfaceOrientation 值按顺序排列且不改变 ipad 方向:0、0、0、4 和 4。首先,为什么应用需要这么长时间才能将正确的方向放入 currentDevice?为什么 shouldAutorotate 被调用了五次?
当方向为 4 时,[DeviceSupport isOrientationSupported:toInterfaceOrientation]
返回 true。但是我的应用程序不旋转。
在我的 info.plist 中:
Supported interface orientations
=> Item 0: Portrait (bottom home button)
=> Item 1: Portrait (top home button)
Supported interface orientations (iPad)
=> Item 0: Landscape (left home button)
=> Item 1: Landscape (right home button)
有什么想法吗?谢谢。
最佳答案
更改您的代码:
[self.window addSubview:aController.view];
此代码:
self.window.rootViewController = aController;
同时添加以下方向支持方法
shouldAutorotate -return YES
supportedInterfaceOrientations- 返回 UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft;
关于objective-c - shouldAutorotate 返回 true 但不旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13290572/
我试图根据用户在我的应用程序中的位置来定义支持的方向,但我很难做到这一点。 到目前为止,我发现我应该使用 iOS6 中现在支持的supportedInterfaceOrientationsForWin
我对 iOS 中的自动旋转方法有点困惑。我正在为我的应用程序使用 Swift,它包含一个标签栏 Controller 和一个导航栏 Controller 。 问题是我希望所有 View Control
我知道如果 VC 有 navigationController 它应该包含一些类似 this 的东西.但是 swift 呢?如何使用navigationController在VC中调用shouldAu
我正在使用 Swift4 使用 Xcode9 开发一个应用程序,它最初仅适用于 iPad,但现在也需要在手机上运行。我需要将手机锁定为纵向,而 iPad 保持纵向/横向。 在使用 shouldauto
我正在制作一款仅在播放视频时支持横向播放的应用。否则,所有场景仅支持纵向。我已经在项目设置中检查了纵向、左右横向。我在 ViewControllers 中编写了以下代码,我想将其限制为仅纵向。 ove
我有一个 UIViewController 详细 View ,它是从 UINavigationController 中的 UITableView 推送的。在 UIViewController 中,我添
我的应用程序(iPad;iOS 6)是仅横向应用程序,但是当我尝试使用 UIPopoverController 来显示照片库时,它会抛出此错误:支持的方向与应用程序没有共同的方向,并且 shouldA
我的应用只有横向模式,使用这段代码我可以拍照 @IBAction func shootPhoto(sender: UIBarButtonItem){ if UIImagePickerContr
我有一个非常烦人的问题,我已经为此奋斗了几个小时。我有一个只能纵向运行的应用程序,但当我播放视频时,我希望它能横向播放。 据我所知,解决这个问题的方法是更改 Info.plist 以允许横向、横向
我的应用中有一些 View 不想支持方向。在 didFinishLaunchingWithOptions 我添加导航: ... UINavigationController *nav = [[UINa
这个问题在这里已经有了答案: Supported orientations has no common orientation with the application, and shouldAut
我知道这个问题之前在这里被问过 iOS 6 shouldAutorotate: is NOT being called .但我的情况有点不同。 最初,在应用程序启动时,我加载了一个 viewContr
我有一个 UINavigationController 和一个 UIViewController (VC1) 推到它上面。 VC1 包含一个collectionView。当用户点击一个单元格时,一个子
我的应用使用了多个库。基本上 KYDrawerController .我希望我的应用程序仅使用 potrait 方向,但对于一个 ViewControllar,我需要横向和 Potrait。 我在互联
我正在使用 iOS 6 和 Xcode 4.5 在 Storyboard 中开发一个带有标签栏和一些导航 View Controller 的应用程序 通常应用程序应该支持所有界面方向,但我有两个 Vi
即使我将 shouldAutoRotate 设置为 false,我也有一个正在旋转的 View (InfoVC)。这是打开 View 的代码(在模式内) - (IBAction)presentInfo
如何设置指定的页面旋转而不使其自动旋转?我发现只有当var shouldAutorotate返回yes时屏幕才能旋转,但我不想自动旋转,我想自己控制旋转的时刻 最佳答案 swift 4+: 使用以下代
我的第一个 View Controller 是 LoginViewController。我正在尝试支持 iOS 6 上的自动旋转管理。 我已经实现了 shouldAutorotate 而不是 shou
我有一个由单个 View Controller 组成的简单应用程序。我从 Xcode 7 GM 单 View 应用程序模板开始,但随后删除了主 Storyboard,并像这样设置我的 View Con
我发现 7.1 和 8 之间的 UIViewController shouldAutorotate 方法有一个小的行为变化。苹果View Controller Programming Guide指出在
我是一名优秀的程序员,十分优秀!