簡體   English   中英

AlertView應該自行消失

[英]AlertView Should Disappear On Its Own

如何不使用任何取消按鈕就使Alertview自行消失?

用這個...

-(void)showAlertView
{
   // code for showing your alertView
   [self performSelector:@selector(dismissAlertView) withObject:yourObject afterDelay:5]
}

-(void)dismissAlertView
{
    [yourAlert dismissWithClickedButtonIndex:0 animated:YES];
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM