码迷,mamicode.com
首页 > 其他好文 > 详细

UIAlertView 的使用

时间:2015-09-29 22:02:29      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

关于提示框的编辑

弹出框自己消失 
-(void)rightrightBarButtonItemAction:(UIBarButtonItem *)sender{ 
UIAlertView *alertView=[[UIAlertView alloc]initWithTitle:@”提示” message:@”收藏成功” delegate:self cancelButtonTitle:nil otherButtonTitles:nil, nil];

[alertView show];
[alertView dismissWithClickedButtonIndex:0 animated:YES];

}

弹出框定时消失 
弹出框定时消失

    • (void)timerFireMethod:(NSTimer*)theTimer//弹出框 

      UIAlertView promptAlert = (UIAlertView)[theTimer userInfo]; 
      [promptAlert dismissWithClickedButtonIndex:0 animated:NO]; 
      promptAlert =NULL; 
      }

    • (void)showAlert:(NSString *) _message{//时间 
      UIAlertView *promptAlert = [[UIAlertView alloc] initWithTitle:_message message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];

      [NSTimer scheduledTimerWithTimeInterval:1.5f 
      target:self 
      selector:@selector(timerFireMethod:) 
      userInfo:promptAlert 
      repeats:YES]; 
      [promptAlert show]; 
      }

UIAlertView 的使用

标签:

原文地址:http://www.cnblogs.com/LNdbk/p/4847372.html

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