关于UIAlertView弹出警告框自动消失

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于UIAlertView弹出警告框自动消失相关的知识,希望对你有一定的参考价值。

 

很多事时候弹出框只是为了提示用户,为了避免让用户过多不必要的操作,让弹出框自动消失就可以了

 

+ (void)showDismissedAlertDialog:(NSString*)message {

    UIAlertView* alert = [[UIAlertView alloc] initWithTitle:nil   //NSLocalizedString(@"错误", nil)

                                                    message:NSLocalizedString(message, nil)

                                                   delegate:self

                                          cancelButtonTitle:nil

                                          otherButtonTitles:nil, nil];

        

    [NSTimer scheduledTimerWithTimeInterval:1.5f

                                     target:self

                                   selector:@selector(timerFireMethod:)

                                   userInfo:alert

                                    repeats:YES];    //弹出框消失倒计时

    

    [alert show];

}

 

 

#pragma mark -- 弹出框自动消失  使用倒计时

+ (void)timerFireMethod:(NSTimer*)theTimer//弹出框

{

    

    UIAlertView *promptAlert = (UIAlertView*)[theTimer userInfo];

    

    [promptAlert dismissWithClickedButtonIndex:0 animated:NO];

    promptAlert = nil;

    

    [theTimer invalidate];//使计时器无效

}

 

以上是关于关于UIAlertView弹出警告框自动消失的主要内容,如果未能解决你的问题,请参考以下文章

IOS UIAlertView(警告框)方法总结

iOS中UIAlertView(警告框)常用方法总结

后台弹出js警告框 如何自动关闭

iOS系统自带的 UIAlertView 自动旋转的实现

JQuery弹出提示框定时自动消失

UIAlertView 在启动时导致警告消息