- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想允许方向根据对 View Controller 的 shouldAutorotateToInterfaceOrientation 调用进行旋转。但是,我希望它立即执行此操作并跳过旋转动画(导致整个 View 旋转时角落显示黑色旋转动画的动画。
有谁知道是否有办法指定您希望它立即发生(没有动画)?
最佳答案
为了执行您想要的操作,您必须手动旋转(并调整大小) View 。没有任何属性可以让您轻松更改以轻松执行您想要的操作。下面是注册设备旋转事件的代码。
- (void)viewDidLoad {
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationChanged:)
name:UIDeviceOrientationDidChangeNotification object:nil];
//Whenever the device orientation changes, orientationChanged will be called
}
- (void)orientationChanged:(NSNotification *)notification
{
UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation;
//Based upon which orientation the device is in, update your View rotations.
//A simple view.transform = CGAffineTransformMakeRotation(whatever); will work well.
}
我认为您应该完全删除 shouldAutoRotateToInterfaceOrientation: 函数。当 View 卸载时,您还应该调用 [[UIDevice currentDevice] endGenerateDeviceOrientationNotifications];
。
关于iphone - 有没有办法从 shouldAutorotateToInterfaceOrientation 跳过旋转动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3233032/
我编写了一个通用应用程序,并且在“shouldAutorotateToInterfaceOrientation”方法中返回了 YES。该方法被调用,但每当我更改 Iphone 或 Ipad 的方向时,
我一直在以纵向模式编写我的通用应用程序,现在大约 15 个 nib 文件,很多很多 viewCotnrollers,我想实现 shouldAutorotateToInterfaceOrientatio
我们的应用被拒绝了,因为该应用没有以倒置的方向旋转。 所以我们有一个标签栏应用程序,将此代码添加到所有标签... shouldAutorotateToInterfaceOrientation 没有意义
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
我的 UIViewController 中有以下代码,我正在设备和模拟器中测试 iOS 5。 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInt
在我的项目设置中,我将支持的界面方向设为横向。 我是否仍应在每个 View Controller 中实现以下内容? - (BOOL)shouldAutorotateToInterfaceOrienta
我通过在 Controller 的 .h 文件中声明它使其可访问, 但我不喜欢仅出于测试目的而更改方法的可见性。 有没有其他方法可以使用 Objective-C 调用此方法, 前任。通过临时从测试类更
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { if (in
我有一个横向应用程序,如果设备翻转,我想旋转 180 度。然而,在我的主视图 Controller 中,shouldAutorotateToInterfaceOrientation 根本没有被调用。为
我正在使用 UISplitViewController,当我启动模拟器时,出现以下错误: “对于所有界面方向, View Controller 从 -shouldAutorotateToInterfa
我正在尝试在我的应用程序中实现自动旋转,该应用程序基本上是 UINavigationController,其中有很多 UIViewControllers 被推送到它上面。 我已经将它复制粘贴到我的第一
我想允许方向根据对 View Controller 的 shouldAutorotateToInterfaceOrientation 调用进行旋转。但是,我希望它立即执行此操作并跳过旋转动画(导致整个
我有一个关于 shouldAutorotateToInterfaceOrientation 的问题: 我有一个 GridView Controller ,我在自动旋转方法中放置了一个断点,它会查看该方
我从 lldb 收到以下警告: The view controller returned NO from -shouldAutorotateToInterfaceOrientation: for al
我经常看到这样的代码: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrient
好吧,我不完全确定我是否会充分解释这一点,但就这样吧。 在我的应用程序中,我有多个 viewController,它们被添加和删除以显示不同的 View ,等等。其中一些 Controller ,我想
我正在寻找有关如何仅允许您的 iOS 应用程序使用某些方向的说明。我知道 UISupportedInterfaceOrientations 和 shouldAutorotateToInterfaceO
我在 Deployment Info 下将支持的界面方向设置为除纵向倒置外的所有界面方向。 我想覆盖 shouldAutorotateToInterfaceOrientation: 自定义行为。 (即
我正在从事 iOS 5 目标项目。我的定位方法如下。 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)in
我是 Swift 的新手。我想检测设备是否正在旋转(纵向或横向)。当然,我在 Swift 中需要它。 objective-c 代码: [[UIDevice currentDevice] beginGe
我是一名优秀的程序员,十分优秀!