0

下面的函数没有从服务器下载内容,它给出 ASIHTTPRequestErrorDomain Code=4 "请求被取消。

此函数是从 viewdidload 调用的。但是相同的 url 工作正常,它在 -(void)downLoad:(id)sender event:(id)event 函数中下载内容很好,但在 -(void)startDownload 函数中没有.

请让我知道我的函数中有什么问题/错误(-(void)startDownload)

下面的功能工作正常

-(void)downLoad:(id)sender event:(id)event{

self.tblViewDownload.userInteractionEnabled = NO;

IsRequestCompleted = NO;

CGPoint touchPosition = [[[event allTouches] anyObject] locationInView:self.tblViewDownload];
NSIndexPath *indexPath = [self.tblViewDownload indexPathForRowAtPoint:touchPosition];
UITableViewCell *Cell = [self.tblViewDownload cellForRowAtIndexPath:indexPath];

progress = [[UIProgressView alloc]initWithProgressViewStyle:UIProgressViewStyleBar];
progress.frame = CGRectMake(65, 55, 210, 25);
progress.progress = 0.0;
[Cell.contentView addSubview:progress];

UIButton* button = (UIButton*)sender;
button.hidden=YES;

if(!self.networkQueue)
    self.networkQueue = [[[ASINetworkQueue alloc] init] autorelease];

[self.networkQueue cancelAllOperations];
[self.networkQueue setQueueDidFinishSelector:@selector(queueCompleted:)];
[self.networkQueue setShowAccurateProgress:YES];
[self.networkQueue setDownloadProgressDelegate:progress];

[self.networkQueue setDelegate:self];

NSDictionary *aDict =[self.myUrlArray objectAtIndex:[indexPath row]];
NSString *aImgUrl = [aDict objectForKey:@"IMG_URL"];
NSString *aVideoUrl = [aDict objectForKey:@"VIDEO_URL"];
NSString *aAudioUrl = [aDict objectForKey:@"AUDIO_URL"];

NSArray *aPoemArrayUrls = [NSArray arrayWithObjects:aImgUrl,aVideoUrl,aAudioUrl,nil];

for(NSString* urlString in aPoemArrayUrls)
{
    NSURL *url = [NSURL URLWithString:urlString];
    ASIHTTPRequest *downloadAFileRequest = [[ASIHTTPRequest requestWithURL:url]retain];
    NSString *Filename = [urlString lastPathComponent];
    NSLog(@"%@ filename",Filename);
    [downloadAFileRequest setUserInfo:[NSDictionary dictionaryWithObject:@"request1" forKey:@"name"]];
    [downloadAFileRequest setDownloadDestinationPath:[[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:Filename]];
    [downloadAFileRequest setShouldContinueWhenAppEntersBackground:YES];
    [downloadAFileRequest setDelegate:self];
    [downloadAFileRequest setDidFinishSelector:@selector(requestDone:)];
    [downloadAFileRequest setDidFailSelector:@selector(requestWentWrong:)];
    [downloadAFileRequest setShowAccurateProgress:YES];

    [self.networkQueue addOperation:downloadAFileRequest];
    //----
}

[self.networkQueue go];

}

下面的函数不起作用并给出 ASIHTTPRequestErrorDomain Code=4 "请求被取消

-(void)startDownload{

if([self.myUrlArray count] > 0 ){

int count = [self.myUrlArray count];

int i = count - count;

NSLog(@"%d iiiiii",i);

NSIndexPath *myIP = [NSIndexPath indexPathForRow:i inSection:0];

UITableViewCell *Cell = [self.tblViewDownload cellForRowAtIndexPath:myIP];

progress = [[UIProgressView alloc]initWithProgressViewStyle:UIProgressViewStyleBar];
progress.frame = CGRectMake(65, 55, 210, 25);
progress.progress = 0.0;
progress.backgroundColor = [UIColor redColor];
[Cell.contentView addSubview:progress];

  if(!self.networkQueue)
      self.networkQueue = [[[ASINetworkQueue alloc] init] autorelease];

  [self.networkQueue cancelAllOperations];
  [self.networkQueue setQueueDidFinishSelector:@selector(queueCompleted:)];
  [self.networkQueue setShowAccurateProgress:YES];
  [self.networkQueue setDownloadProgressDelegate:progress];

  [self.networkQueue setDelegate:self];

  NSDictionary *aDict =[self.myUrlArray objectAtIndex:[myIP row]];
  NSString *aImgUrl = [aDict objectForKey:@"IMG_URL"];
  NSString *aVideoUrl = [aDict objectForKey:@"VIDEO_URL"];
  NSString *aAudioUrl = [aDict objectForKey:@"AUDIO_URL"];

  NSArray *aPoemArrayUrls = [NSArray arrayWithObjects:aImgUrl,aVideoUrl,aAudioUrl,nil];

  for(NSString* urlString in aPoemArrayUrls)
  {
      NSURL *url = [NSURL URLWithString:urlString];
      ASIHTTPRequest *downloadAFileRequest = [[ASIHTTPRequest requestWithURL:url]retain];
      NSString *Filename = [urlString lastPathComponent];
      NSLog(@"%@ filename",Filename);
      [downloadAFileRequest setUserInfo:[NSDictionary dictionaryWithObject:@"request1" forKey:@"name"]];
      [downloadAFileRequest setDownloadDestinationPath:[[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:Filename]];
      [downloadAFileRequest setShouldContinueWhenAppEntersBackground:YES];
      [downloadAFileRequest setDelegate:self];
      [downloadAFileRequest setDidFinishSelector:@selector(requestDone:)];
      [downloadAFileRequest setDidFailSelector:@selector(requestWentWrong:)];
      [downloadAFileRequest setShowAccurateProgress:YES];

      [self.networkQueue addOperation:downloadAFileRequest];
  }

  [self.networkQueue go];


}
}
4

1 回答 1

2

我想你忘了设置IsRequestCompleted = NO;第二个功能。另外,为什么要发送 cancelAllOperations?这很有可能是问题所在。

此外,无需self.networkQueue每次都自动释放和重新初始化它。只需为班级设置一次并在-dealloc.

于 2012-08-08T13:56:36.507 回答