我的 iOS 应用程序似乎有问题。
它的部署目标是iOS5.0,但是我使用的是iOS 6.0 SDK。
在我的 View Controller 中,我有:
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationMaskPortrait;
}
-(BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)toInterfaceOrientation
{
return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
}
这在 iOS5 模拟器中运行时可以正常工作。
View 不会旋转到 LandScape 或倒置。
但是,在 IOS6 模拟器中(以及在设备上),它将继续旋转。
我使用 NSLog 来检查 -supportedInterfaceOrientations 确实被调用了,它确实被调用了两次,但它仍然旋转到 LandScape(右或左)
我做错了什么?
我还扩展了 UINavigationController (我的 Root View Controller )以包含以下内容:
@implementation UINavigationController (Rotation_IOS6)
-(BOOL)shouldAutorotate
{
return [[self.viewControllers lastObject] shouldAutorotate];
}
-(NSUInteger)supportedInterfaceOrientations
{
return [[self.viewControllers lastObject] supportedInterfaceOrientations];
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return [[self.viewControllers lastObject] preferredInterfaceOrientationForPresentation];
}
@end
但还是没有成功。
编辑
根据马特的回答。我还需要使用与我的 UINavigationController 类似的实现来扩展 UITabBarController 并且这很有效。
Best Answer-推荐答案 strong>
问题可能是您有一个导航界面。你?如果是这样,您需要继承 UINavigationController 并使用该子类的实例作为导航 Controller 。在该子类中,that 是您实现 supportedInterfaceOrientations 的地方。对于任何父 View Controller (例如 UITabBarController)也是如此。
原因是 iOS 6 对旋转的思考方式与 iOS 5完全不同。你认为你从 iOS 5 知道的任何东西都不再适用。在 iOS 6 中,我们从应用程序本身的级别开始,然后通过应用程序委托(delegate)到 Root View Controller 或其他全屏 View Controller (例如呈现的 View Controller )和 stop . parent 不再咨询其子女。
此外,应用程序本身(通过 info.plist 或应用程序委托(delegate))必须列出应用程序的任何部分可以永远每个方向 假设; View Controller 只能请求其中的 子集。
查看发行说明:
http://developer.apple.com/library/ios/#releasenotes/General/RN-iOSSDK-6_0/_index.html
但是,请注意,这句话是谎言:
For compatibility, view controllers that still implement the shouldAutorotateToInterfaceOrientation: method do not get the new autorotation behaviors
相反,在 iOS 6 中,旧的自动旋转方法被完全忽略了;每个人都会得到新的自转行为。这不是“选择加入”。
关于即使被告知不要,iOS6 方向仍在旋转,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/13755816/
|