在app制作过程中,需要使用到提示框自动消失的功能,下面写出一种我常使用的方法:
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"提示信息" preferredStyle:UIAlertControllerStyleAlert];
[self presentViewController:alert animated:YES completion:nil];
//控制提示框显示的时间为2秒
[self performSelector:@selector(dismiss:) withObject:alert afterDelay:2.0];
实现dismiss:方法
- (void)dismiss:(UIAlertController *)alert{
[alert dismissViewControllerAnimated:YES completion:nil];
}