ios中提示信息的实现及自动消失

来源:互联网 发布:mysql反斜杠 编辑:程序博客网 时间:2024/05/18 01:21

利用UIAlertView+NSTimer可轻松实现这一功能


- (void)timerFireMethod:(NSTimer*)theTimer
{
    UIAlertView *promptAlert = (UIAlertView*)[theTimer userInfo];
    [promptAlert dismissWithClickedButtonIndex:0 animated:NO];
    
    [promptAlert release];
    promptAlert =NULL;
}


- (void)showAlert

{

       UIAlertView *promptAlert = [[UIAlertView alloc] initWithTitle:@"提示:" message:@"添加收藏成功!" delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
        
        [NSTimer scheduledTimerWithTimeInterval:0.5f
                                         target:self
                                         selector:@selector(timerFireMethod:)
                                         userInfo:promptAlert
                                         repeats:NO];
        
        [promptAlert show]; 
}

延迟时间可自己调节。
0 0