定时消失的Alert弹窗
Posted Walking_Jin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定时消失的Alert弹窗相关的知识,希望对你有一定的参考价值。
在公共类里面写如下两个类方法就可以了,只需要把第一个类方法公布出来:
代码如下:
#pragma mark --- 定时弹窗 --- + (void)showAlertViewWithTitle:(NSString *)title message:(NSString *)message afterDelay:(NSTimeInterval)delay { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:nil otherButtonTitles:nil]; [alert show]; [self performSelector:@selector(dimissAlert:) withObject:alert afterDelay:delay]; } + (void)dimissAlert:(UIAlertView *)alert { if(alert) { [alert dismissWithClickedButtonIndex:[alert cancelButtonIndex] animated:YES]; } }
以上是关于定时消失的Alert弹窗的主要内容,如果未能解决你的问题,请参考以下文章