2

キューにある複数のファイルをダウンロードする必要があります。単一のファイルをダウンロードしようとすると完全に正常に動作しますが、複数のファイルをダウンロードしようとすると、最初のダウンロードと同時にダウンロードが開始され、最初のダウンロードが完了するまでそれらをキューに入れてから、2番目のダウンロードで作業する必要があります。AFNetworkingライブラリ拡張機能AFDownloadRequestOperationを使用しています。以下は私のコードです。私が間違っていることがあれば、これに関して私を助けてください。

         NSURLRequest *request = [NSURLRequest requestWithURL:videoURL];

         AFDownloadRequestOperation *operation = [[AFDownloadRequestOperation alloc] initWithRequest:request targetPath:path shouldResume:YES];
         [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
             if(operation.response.statusCode == 200) {

                 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"Successfully Downloaded" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
                 [alertView show];
             }

         }failure:^(AFHTTPRequestOperation *operation, NSError *error) {

             if(operation.response.statusCode!= 200) {

                UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"Error While Downloaded" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
                 [alertView show];
             }
         }];

         [operation setProgressiveDownloadProgressBlock:^(NSInteger bytesRead, long long totalBytesRead, long long totalBytesExpected, long long totalBytesReadForFile, long long totalBytesExpectedToReadForFile) {

             float percentDone = ((float)totalBytesRead) / totalBytesExpectedToReadForFile;
             delegate.progressDone = percentDone;
             [progressTableView reloadData];
         }];
         [operation start];
4

1 に答える 1

2

リクエストを作成し、AFHTTPClientの操作キューのインスタンスに追加します。

AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:nil];

// Important if only downloading one file at a time
[client.operationQueue setMaxConcurrentOperationCount: 1];

NSArray *videoURLs; // An array of strings you want to download

for (NSString * videoURL in videoURLs) {

    // …setup your requests as before

    [client enqueueHTTPRequestOperation:downloadRequest];
}

最初のリクエストは、AFHTTPClientの操作キューに追加されるとすぐに開始されますが、後続のリクエストは、前の操作が終了するまで順番に待機します。

于 2013-03-11T15:25:59.477 に答える