一 UIAlertView的使用
UIAlertView* alert=[[UIAlertView alloc] initWithTitle:@"提示" message:@"标签获取失败" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil];
[alert show];
二 UIAlertView弹出后2s让其自动消失
两种方法:
(1)结合NSTimer
定义UIAlertView *baseAlert;
- (void) performDismiss: (NSTimer *)timer {
[baseAlert dismissWithClickedButtonIndex:0 animated:NO];//important
[baseAlert release];
baseAlert = NULL;
}
- (void) presentSheet {
baseAlert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"\nMessage Message Message " delegate:self cancelButtonTitle:nil otherButtonTitles: nil];
[NSTimer scheduledTimerWithTimeInterval:2.0f target:self selector: @selector(performDismiss:) userInfo:nil repeats:NO];
[baseAlert show]; }
(2)使用PerformSelector:withObject:afterDelay:方法
- (void) dimissAlert:(UIAlertView *)alert {
if(alert) {
[alert dismissWithClickedButtonIndex:[alert cancelButtonIndex] animated:YES];
[alert release];
}
}
- (void)showAlert{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"title" message:@"message" delegate:nil cancelButtonTitle:nilotherButtonTitles:nil];
[alert show];
[self performSelector:@selector(dimissAlert:) withObject:alert afterDelay:2.0];
}
本文详细介绍了如何在iOS应用中使用UIAlertView,并提供了两种方法使其在弹出2秒后自动消失,包括结合NSTimer和使用PerformSelector:withObject:afterDelay:方法。
468

被折叠的 条评论
为什么被折叠?



