码迷,mamicode.com
首页 > 移动开发 > 详细

ios:UIAlertView自动消失

时间:2014-12-23 19:32:50      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

在写程序的过程中用到很多提示的信息,于是非常自然地就要使用UIAlertView控件。但是这些提示的信息有时候只需提示就行,不用操作,那么此时就要这个提示框自动消失就OK了。 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)使用PerformSelectorwithObjectafterDelay:方法

 - (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自动消失

标签:

原文地址:http://blog.csdn.net/haogaoming123/article/details/42105859

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!