UIAlertView的自动取消的使用

UIAlertView现在虽然被UIAlertController取代,但是仍然有些地方可以用到,这里将UIAlertView的自动取消的方法写下来,希望帮到有需要的朋友。

 //添加一个提示框

        self.alert = [[UIAlertView alloc] initWithTitle:nil message:[responseObject objectForKey:@"returnMsg"] delegate:nil cancelButtonTitle:nil otherButtonTitles:nil, nil];

        [NSTimer scheduledTimerWithTimeInterval:2.0f target:self selector:@selector(performDismiss:) userInfo:nil repeats:NO];

        [self.alert show];

/*

 对话框两秒之后的调用的方法

 */

-(void) performDismiss:(NSTimer *)timer

{

    [self.alert dismissWithClickedButtonIndex:0 animated:NO];

    

}


你可能感兴趣的:(UIAlertView的自动取消的使用)