0

我正在使用 ASINetworkQueue 进行下载。我正在使用以下代码。

requestUserSpecificFileQueue = [ASINetworkQueue queue];
    failed = NO;
//    [requestUserSpecificFileQueue reset];
    NSDictionary *dictLocal=[_objectArray objectAtIndex:bookViewSelected.tag];
    UIProgressView *progressView=[[UIProgressView alloc]initWithFrame:CGRectMake(5, 190, 200, 20)];
    [bookViewSelected addSubview:progressView];
    [requestUserSpecificFileQueue setDelegate:nil];
    [requestUserSpecificFileQueue setDownloadProgressDelegate:progressView];
    [requestUserSpecificFileQueue setRequestDidFinishSelector:@selector(downLoadFinished:)];
    [requestUserSpecificFileQueue setRequestDidFailSelector:@selector(downloadFailed:)];
    [requestUserSpecificFileQueue setShowAccurateProgress:YES];
    progressView.tag=bookViewSelected.tag;
    [requestUserSpecificFileQueue setShouldCancelAllRequestsOnFailure:NO];
//    requestUserSpecificFileQueue.name=[NSString stringWithFormat:@"%d",bookViewSelected.index];
    ASIHTTPRequest *requestUserSpecificFile=[ASIHTTPRequest requestWithURL:[dict objectForKey:@"object"]];
    requestUserSpecificFile.tag=bookViewSelected.tag;
    [requestUserSpecificFile setDownloadDestinationPath:[[self returnUnzipBundlePathName] stringByAppendingPathComponent:dictLocal[@"fullLengthFilename"]]];

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_4_0
    [requestUserSpecificFile setShouldContinueWhenAppEntersBackground:YES];
#endif
    [requestUserSpecificFileQueue addOperation:requestUserSpecificFile];
    [requestUserSpecificFileQueue go];

当我 pushViewcontroller 然后回来我的应用程序崩溃时 EXC_BAD_ACCSS 应用程序在方法中崩溃 -

[ASIHTTPRequest updateProgressIndicator:&downloadProgressDelegate withProgress:[self bytesDownloadedSoFar] ofTotal:[self totalBytesToDownload]];
4

1 回答 1

2

ASIHTTPRequest 已弃用且不再维护,请改用AFNetworking

于 2013-05-29T15:44:14.553 回答