A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. UIAlertView弹出后2s让其自动消失,两种方法:

  2. (1)结合NSTimer

  3. UIAlertView baseAlert = nil;
  4. - (void) performDismiss: (NSTimer *)timer
  5. {
  6.     [baseAlert dismissWithClickedButtonIndex:0 animated:NO];//important
  7.     [baseAlert release];
  8.     baseAlert = NULL;
  9. }     
  10. - (void) presentSheet
  11. {
  12.     baseAlert = [[UIAlertView alloc]
  13.                               initWithTitle:@"Alert" message:@"\nMessage Message Message "
  14.                               delegate:self cancelButtonTitle:nil
  15.                               otherButtonTitles: nil];
  16.     [NSTimer scheduledTimerWithTimeInterval:2.0f target:self selector: @selector(performDismiss:)
  17.                                    userInfo:nil repeats:NO];
  18.     [baseAlert show];
  19. }


  20. (2)使用PerformSelector:withObject:afterDelay:方法

  21. - (void) dimissAlert:(UIAlertView *)alert
  22. {
  23.     if(alert)
  24.     {
  25.         [alert dismissWithClickedButtonIndex:[alert cancelButtonIndex] animated:YES];
  26.         [alert release];
  27.     }
  28. }

  29. - (void)showAlert{            
  30.     UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"title" message:@"message" delegate:nil
  31. cancelButtonTitle:nil otherButtonTitles:nil];
  32.    
  33.     [alert show];
  34.     [self performSelector:@selector(dimissAlert:) withObject:alert afterDelay:2.0];
  35. }
复制代码


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马