iOS 关于UIAlertController、UIAlertView弹窗问题

关于UIAlertController弹窗问题

目标:同时弹出2个以上的弹窗

问题:在弹出一个alertController的时候,第二个alertController是无法弹出的

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"弹窗1" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    }];
    UIAlertAction *skipAction = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    }];
    [alertController addAction:cancelAction];
    [alertController addAction:skipAction];
    [self presentViewController:alertController animated:YES completion:nil];
    
    UIAlertController *alertController2 = [UIAlertController alertControllerWithTitle:@"提示" message:@"弹窗2" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *cancelAction2 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    }];
    UIAlertAction *skipAction2 = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    }];
    [alertController2 addAction:cancelAction2];
    [alertController2 addAction:skipAction2];
    [self presentViewController:alertController2 animated:YES completion:nil];

报错:

输出

xcode给出的理由是:试图呈现已经呈现在self上的alert2

原因分析:

一个视图控制器仅能使用presentViewController模态方法弹出一个控制器

如果想在模态方法弹出第二个视图控制器,可以使用已弹出的alert1来弹出


扩展

使用present,弹出普通的控制器

UIViewController *ctrl1 = [UIViewController new];
ctrl1.view.backgroundColor = [UIColor redColor];
[self presentViewController:ctrl1 animated:YES completion:nil];

UIViewController *ctrl2 = [UIViewController new];
ctrl2.view.backgroundColor = [UIColor yellowColor];
[self presentViewController:ctrl2 animated:YES completion:nil];
    
NSLog(@"self->%p",self);
NSLog(@"111->%p",ctrl1);
NSLog(@"222->%p",ctrl2);

结果:系统依旧不能present弹出两个视图,想弹出第二个视图的话,需要将self换成ctrl1;由于UIAlertController是继承自UIViewController的,UIViewController既然不能present弹出两个视图控制器,UIAlertController自然也不行

输出

view is not in the window hierarchy!:视图不在窗口层次结构中


关于UIAlertView弹窗问题

目标:弹出两个提示窗体

UIAlertView *alertView1 = [[UIAlertView alloc] initWithTitle:@"提示" message:@"弹窗1" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
UIAlertView *alertView2 = [[UIAlertView alloc] initWithTitle:@"提示" message:@"弹窗2" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
[alertView1 show];
[alertView2 show];

测试结果:是可以弹出两个视图的,会展现最新弹窗,点击消失后,继续弹出之前的弹窗
似乎使用UIAlertView就可以满足弹出两个窗体的需求,但是新的问题随之而来

新问题的产生

在弹出UIAlertView窗体时,如果接下来使用到了[UIApplication sharedApplication].keyWindow.rootViewController来获取控制器等相关操作时,会出现闪退问题

原因:使用UIAlertView的show时,系统使用了一个新的Window来展现UIAlertView,所以当show弹窗时,keyWindow已经被替换

验证:我们来输出keyWindow的内存地址

// 弹窗之前window的内存地址
UIWindow *delegateWindow = [UIApplication sharedApplication].delegate.window;
UIWindow *keyWindow_pre = [UIApplication sharedApplication].keyWindow;
NSLog(@"delegateWindow->%p",delegateWindow);
NSLog(@"keyWindow_pre->%p",keyWindow_pre);
    
UIAlertView *alertView1 = [[UIAlertView alloc] initWithTitle:@"提示" message:@"弹窗1" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
UIAlertView *alertView2 = [[UIAlertView alloc] initWithTitle:@"提示" message:@"弹窗2" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
[alertView1 show];
[alertView2 show];
// 弹窗之后window的内存地址
UIWindow *delegateWindow_now = [UIApplication sharedApplication].delegate.window;
UIWindow *keyWindow_now = [UIApplication sharedApplication].keyWindow;
NSLog(@"delegateWindow_now->%p",delegateWindow_now);
NSLog(@"keyWindow_now->%p",keyWindow_now);

结果:

结果

上图可知:

1、在UIAlertView没有使用show之前,delegate.window和keyWindow内存地址是一致的,表示当前的keyWindow就是我们应用的window,一般情况下,两者是同一个

2、在UIAlertView使用show之后,keyWindow发生了变化,已经被系统替换为新的window,这个新的window用来展示UIAlertView;但是此时delegate.window还是原来的那个

结论:

虽然UIAlertView可以解决同时弹出两个弹窗的问题,但是UIAlertView的实现机制会改变keyWindow

如果使用keyWindow的获取应用控制器的时候,最好将keyWindow改成delegate.window,因为keyWindow是会变动的


扩展:验证UIAlertController的keyWindow

验证:将弹窗换成UIAlertController,其他不变

// 弹窗之前window的内存地址
UIWindow *delegateWindow = [UIApplication sharedApplication].delegate.window;
UIWindow *keyWindow_pre = [UIApplication sharedApplication].keyWindow;
NSLog(@"delegateWindow->%p",delegateWindow);
NSLog(@"keyWindow_pre->%p",keyWindow_pre);
    
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:@"弹窗1" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    }];
UIAlertAction *skipAction = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    }];
[alertController addAction:cancelAction];
[alertController addAction:skipAction];
[self presentViewController:alertController animated:YES completion:nil];
    
UIAlertController *alertController2 = [UIAlertController alertControllerWithTitle:@"提示" message:@"弹窗2" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *cancelAction2 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    }];
UIAlertAction *skipAction2 = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    }];
[alertController2 addAction:cancelAction2];
[alertController2 addAction:skipAction2];
[self presentViewController:alertController2 animated:YES completion:nil];
// 弹窗之后window的内存地址
UIWindow *delegateWindow_now = [UIApplication sharedApplication].delegate.window;
UIWindow *keyWindow_now = [UIApplication sharedApplication].keyWindow;
NSLog(@"delegateWindow_now->%p",delegateWindow_now);
NSLog(@"keyWindow_now->%p",keyWindow_now);

结果:

结果

结论:

1、使用UIAlertController并不会改变keyWindow

2、不能弹出两个控制器




综上所述:

1、弹窗两个以上的时候,使用UIAlertView

2、使用keyWindow的地方,最好改为delegate.window,这两者还是有些不同的
3、模态方式跳转视图时,self只能展现一个控制器,若是需要展现第二个,需要当前已经展现的控制器继续模态方式跳转

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,884评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,347评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,435评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,509评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,611评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,837评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,987评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,730评论 0 267
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,194评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,525评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,664评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,334评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,944评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,764评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,997评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,389评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,554评论 2 349

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,066评论 4 62
  • 感觉写写文章也不是那么难哦,想说的话把它说出来了就行啦,发啥牢骚是吧,牢骚发的多它也只是牢骚,不是事撒。 ...
    清爽sh阅读 124评论 0 0
  • 爱情,一个永恒的话题。不同年代的爱情,也具有这个年代的特征。从古至今,与爱有关的故事从没有过时。 文学著作里的爱情...
    华贞文化传媒阅读 382评论 0 0
  • [01] “此路是我开,此树是我栽,若想保小命,留下陪我玩。” “怎么又是你!怎么还在这里?” “在等你!” 小和...
    飞猫君阅读 233评论 0 2
  • 小女我和老爹的日常 场景:A restaurant named No Name. 小女:#=!~#——!%ÇÂÅÈ...
    旧门阅读 302评论 0 0