模拟器中的iOS 6自动旋转与实际的iOS 6设备不同

前端之家收集整理的这篇文章主要介绍了模拟器中的iOS 6自动旋转与实际的iOS 6设备不同前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的应用程序不会在iOS 6 GM模拟器中自动旋转,但它在设备上使用相同版本的iOS.这可能是一个模拟器错误吗?该应用程序正在使用已弃用的自动旋转方法,但它们在设备本身上工作正常,这让我想知道模拟器API是否不同?

解决方法

这是我为了让我的应用再次运行而添加内容
// Tell the system what we support
- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskAllButUpsideDown;
}

// Tell the system It should autorotate
- (BOOL) shouldAutorotate {
    return YES;
}

// Tell the system which initial orientation we want to have
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return UIInterfaceOrientationPortrait;
}
原文链接:https://www.f2er.com/iOS/335369.html

猜你在找的iOS相关文章