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

iOS开发- 自己主动消失的弹出框

时间:2017-04-26 17:45:29      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:owa   mat   原理   ini   with   smi   led   animate   ios开发   

- (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 delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
   
    [NSTimer scheduledTimerWithTimeInterval:1.5f
                                     target:self
                                   selector:@selector(timerFireMethod:)
                                   userInfo:promptAlert
                                    repeats:YES];
    [promptAlert show];
}



在须要显示弹出框的地方调用[self showAlert:@"測试"];就可以。

原理: 弹出的时候, 设置一个定时器。 这里设置1.5秒后, 把当前的弹出框置空。  (promptAlert =NULL;)


iOS开发- 自己主动消失的弹出框

标签:owa   mat   原理   ini   with   smi   led   animate   ios开发   

原文地址:http://www.cnblogs.com/zhchoutai/p/6769699.html

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