服务器之家

服务器之家 > 正文

iOS中UIAlertView3秒后消失的两种实现方法

时间:2021-04-07 16:32     来源/作者:iOS开发网

一,效果图。

iOS中UIAlertView3秒后消失的两种实现方法

二,代码。

?
1
2
3
4
5
6
7
8
9
10
11
12
- (void)viewdidload {
 [super viewdidload];
 // do any additional setup after loading the view, typically from a nib.
 uialertview* alert = [[uialertview alloc]initwithtitle:nil message:@"此信息3秒后消失" delegate:nil cancelbuttontitle:nil otherbuttontitles:nil, nil];
 [alert show];
 [self performselector:@selector(dismissalert:) withobject:alert afterdelay:3.0];
}
- (void)dismissalert:(uialertview*)alert {
 if ( alert.visible ) {
  [alert dismisswithclickedbuttonindex:alert.cancelbuttonindex animated:yes];
 }
}

下面给大家介绍下uialertview自动消失的两种方法

话说,在写程序的过程中用到很多提示的信息,于是非常自然地就要使用uialertview控件。

但是这些提示的信息有时候只需提示就行,不用操作,那么此时就要这个提示框自动消失就ok了。

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

(1)结合nstimer

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
uialertview basealert = nil;
- (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:方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- (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:nil otherbuttontitles:nil];
 [alert show];
 [self performselector:@selector(dimissalert:) withobject:alert afterdelay:2.0];
}

总结

以上所述是小编给大家介绍的ios中uialertview3秒后消失的两种实现方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部