热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

当iOS8中显示UIAlertView时,App会旋转

如何解决《当iOS8中显示UIAlertView时,App会旋转》经验,为你挑选了1个好方法。

我正在开发一个主要用于纵向模式的应用程序(除少数视图外).我们在iOS 8中遇到一个问题UIViewAlert,即使底层视图控制器仅支持纵向方向且其shouldAutorotate方法返回NO ,应用程序在显示时也能够旋转.UIAlertView旋转到横向时旋转甚至不完整,但底层视图仍保持纵向模式.如果我们在iOS 7中运行应用程序没有问题.

我知道UIAlertViewiOS 8已被弃用,我们现在应该使用它UIAlertController.但是,我真的希望避免更换它,因为这意味着要编辑50多个使用UIAlertView和的类UIAlertViewDelegate.此外,我们仍然支持iOS 7,所以我必须有两个解决方案.当我们完全切换到iOS 8时,我宁愿只做一次.



1> Silmaril..:

把它放在你的UIApplicationDelegate实现中

迅速

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?

func application(application: UIApplication, supportedInterfaceOrientationsForWindow window: UIWindow?) -> Int {
    if window == self.window {
        return Int(UIInterfaceOrientationMask.All.rawValue)  // Mask for all supported orientations in your app
    } else {
        return Int(UIInterfaceOrientationMask.Portrait.rawValue) // Supported orientations for any other window (like one created for UIAlert in iOS 8)
    }
}

}

Objective-C的

@implementation AppDelegate

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    if (window == self.window) {
        return UIInterfaceOrientationMaskAll; // Mask for all supported orientations in your app
    } else {
        return UIInterfaceOrientationMaskPortrait; // Supported orientations for any other window (like one created for UIAlert in iOS 8)
    }
}

@end


推荐阅读
author-avatar
神奇伟哥
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有