MBProgressHUD GCD后隐藏指示器

时间:2014-07-10 00:16:30

标签: ios objective-c grand-central-dispatch mbprogresshud

用户可以单击按钮下载一组地图,完成该任务后,我想隐藏进度指示器。我已经尝试了以下代码的几个变体,但没有实现我正在搜索的内容。任何指导都将不胜感激。

 - (IBAction)SavePhotoOnClick:(id)sender{


    HUD = [[MBProgressHUD alloc] initWithView:self.navigationController.view];
    [self.navigationController.view addSubview:HUD];
    dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
        NSURL *url = [NSURL URLWithString:urlstr1];
        UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:url]];
        UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);        dispatch_async(dispatch_get_main_queue(), ^{
            [MBProgressHUD hideHUDForView:self.view animated:YES];
        });
    });



        // Set determinate mode
    HUD.mode = MBProgressHUDModeDeterminate;
    HUD.dimBackground = YES;
    HUD.color = [UIColor colorWithRed:0.23 green:0.50 blue:0.82 alpha:0.90];
    HUD.delegate = self;
    HUD.labelText = @"Downloading Maps";

    // myProgressTask uses the HUD instance to update progress
    [HUD showWhileExecuting:@selector(myProgressTask) onTarget:self withObject:nil animated:YES];
    }


- (void)myProgressTask {
    // This just increases the progress indicator in a loop
    float progress = 0.0f;
    while (progress < 1.0f) {
        progress += 0.01f;
        HUD.progress = progress;
        usleep(40000);
    }
}

删除progresstask方法和showWhileExecuting代码会删除进度指示器。似乎usleep覆盖了所有内容,并且不允许在下载完成后隐藏进度指示器,而是在4秒后将其删除。

1 个答案:

答案 0 :(得分:1)

您的问题是myProgressTask没有执行任何实际工作:您的下载实际上发生在您的dispatch_async调用中。在开始网络请求之前使用[hud showHUDAddedTo: self.navigationController.view animated:YES];之类的调用,因此在下载完成后它将被隐藏。这只会显示旋转指示器,而不是进度圆。

如果您想要进度圈,则需要使用NSURLConnection及其关联的delegate methods来跟踪下载进度。具体来说,请查看connection:didReceiveResponse:方法 - 使用expectedContentLength计算百分比,使用从connection:didReceiveData:方法获得的值来逐步更新此进度。

查看this question以获取有关如何执行此操作的示例。