UIAlertView提示框自动消失

来源:互联网 发布:破解平台软件下载 编辑:程序博客网 时间:2024/05/16 17:31
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@""                                                message:@"感谢您提交宝贵意见"                                               delegate:self                                     cancelButtonTitle:@"确认"                                     otherButtonTitles:nil, nil];[alert show];//处理耗时线程dispatch_async(dispatch_get_global_queue(0, 0), ^{    [NSThread sleepForTimeInterval:10];//休眠10秒    //通知主线程更新ui    dispatch_async(dispatch_get_main_queue(), ^{        [alert dismissWithClickedButtonIndex:0 animated:YES];    });});
0 0
原创粉丝点击