美文网首页iOS猿媛圈君赏博客程序员
AppDelegate中弹出UIAlertController

AppDelegate中弹出UIAlertController

作者: FlyElephant | 来源:发表于2016-03-31 14:15 被阅读2607次

iOS8之后提示框都使用UIAlertController,在UIViewController中调用也比较简单,但是如果我们在AppDelegate中使用UIAlertController每天直接调用,需要一点小技巧来解决这个问题:
1.初始化UIAlertController:

        UIAlertController *alertController=[UIAlertController alertControllerWithTitle:title message:content preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *sureAction=[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            NSLog(@"简书-FlyElephant");
        }];
        [alertController addAction:sureAction];

2.初始化UIWindow:

        UIWindow   *alertWindow = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
        alertWindow.rootViewController = [[UIViewController alloc] init];
        alertWindow.windowLevel = UIWindowLevelAlert + 1;
        [alertWindow makeKeyAndVisible];
        [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];

属于一个开发中的小知识,希望对有需要的人帮助~

相关文章

网友评论

    本文标题:AppDelegate中弹出UIAlertController

    本文链接:https://www.haomeiwen.com/subject/wivelttx.html