白夜缉凶二:UIAlertView后HUD的toast不显示

前言

UIAlertView iOS9开始废弃,但由于项目里使用了一些历史代码及部分开发者的习惯性使用,导致在iOS9后仍然在使用,一般的使用都没什么特别问题,导致切换成UIAlertController的急迫性也没那么强了,遂导致了目前这个bug

一、bug现象:

在点击了Alert的确定按钮后接着会调用一个接口,然后通过返回的接口内容通过HUD进行Toast提示,但Toast消息怎么都展示不处理,如果延长加载则有可能会显示Toast提示消息

二、缉凶过程:

查找bug的过程就是不断猜测与验证的过程,显示怀疑请求数据部分的代码没在主线程里执行,但修改后没效果,然后再猜是使用了block可能被过早释放,但通过模拟,即使不用block,直接在Alert的回调里仍然不能展示任何消息。缉凶到这里,基本上可以确认是因为使用UIAlertView导致的,但还是不确定是什么原因,于是改用UIAlertController试试,结果发现UIAlertController没任何问题,


2、1

UIAlertView弹窗后立即展示Toast,toast不能展现,延迟一段时间后的toast会展示

@interface HomeViewController () 
@end

@implementation HomeViewController
- (void)viewDidLoad {
[super viewDidLoad];
[self showAlert1];
}
- (void)showAlert1{
UIAlertView * alert = [[UIAlertView alloc]initWithTitle:nil message:@"你是榜的" delegate:self  cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
    [alert show];
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    if(1 == buttonIndex){
        // 点击了确定,first不会显示
        [HUD showMessageInView:nil title:@"点击了确定-first"];
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            // 延迟后的会显示
            [HUD showMessageInView:nil title:@"点击了确定-second"];
        });
    }
}
@end

2、2

UIAlertController弹窗后立即展示Toast,toast能展现,延迟一段时间后的toast也会展示

@interface HomeViewController () 
@end

@implementation HomeViewController
- (void)viewDidLoad {
[super viewDidLoad];
[self showAlert2];
}
- (void)showAlert2{
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:@"你是榜的" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
    }];
    
    UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
        //
        // 点击了确定,first会显示
        [HUD showMessageInView:nil title:@"点击了确定-first"];
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            // 延迟后的也会显示
            [HUD showMessageInView:nil title:@"点击了确定-second"];
        });
        
    }];
    [alertController addAction:cancelAction];
    [alertController addAction:okAction];
    [self presentViewController:alertController animated:YES completion:nil];
}

@end

三、解决方案

猜测:
由于UIAlertView是使用单独window展示的,在当前应用的window之上,而HUD展示在当前window上,UIAlertView关闭消失需要时间,UIAlertView还未消失就显示HUD导致被冲突覆盖或未显示

方案一:如果继续使用功能UIAlertView则在点击了按钮后延迟一段时间后再进行后续的操作
方案二:使用UIAlertController代替


参考:

  • UIAlertController和UIAlertView
  • SVProgressHUD

你可能感兴趣的:(白夜缉凶二:UIAlertView后HUD的toast不显示)