Обновление индикатора выполнения для загрузки NSURLConnectionDataDelegate didReceiveData вызывается только один раз

Я пытаюсь загрузить небольшие файлы PDF 1-2 МБ, может быть, не более 5 МБ. Я работаю над классом SelectionViewController.m, который имеет UIProgressView под названием progressBar, а также реализует протокол NSURLConnectionDataDelegate.

Забавно то, что моя полоса прогресса внезапно переходит с 0,0 на 1,0. Я хотел бы постепенно увеличивать это значение, чтобы оно выглядело красиво.

Вот мой код:

    -(void)downloadPDFToMyDocumentsFrom:(NSString*) PDFUrl filename:(NSString *) title {

    NSURL *url = [[NSURL alloc] initWithString:PDFUrl];
    NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];

    urlConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];

    NSLog(@"%@", self);

    fileName = [title stringByAppendingPathExtension:@"pdf"];
    filePath = [[SearchFeed pathToDocuments] stringByAppendingPathComponent:fileName];

}



 //handling incoming data
 -(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)recievedData{

     if(self.data == nil)
     {
        self.data = [[NSMutableData alloc] initWithCapacity:2048];
     }

     [self.data appendData:recievedData];

     NSNumber *resourceLength = [NSNumber numberWithUnsignedInteger:[self.data length]];

     float progress = [resourceLength floatValue] /[fileLength floatValue];
     self.progressBar.progress = progress;

}
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
    long length = [response expectedContentLength];
    fileLength = [NSNumber numberWithUnsignedInteger:length];
    //lastProgress = 0.0;
    //currentLength = 0.0;
    NSLog(@"%f ------------------------------------------------------- is the fileLength", [fileLength floatValue]);
}

    //handling connection progress

-(void)connectionDidFinishLoading:(NSURLConnection *)connection{
    //WRITE code to set the progress bar to 1.0
    //self.progressBar.progress = 1.0;
    // [fileStream close];
    [self.data writeToFile:filePath atomically:YES];

    //[listFileAtPath:self.filePath];
    connection = nil;
    NSLog(@"%f %f-------------------------------------------- Finished Loading ", lastProgress, [fileLength floatValue]);
}

Я поместил несколько операторов NSLog, чтобы помочь мне отладить, и кажется, что он загружается сразу.

Вот вывод всего NSLog:

2013-09-05 20:30:04.856 Revista[63246:c07] <SelectionViewController: 0x7180000>
2013-09-05 20:30:04.859 Revista[63246:c07] 63561.000000 ------------------------------------------------------- is the fileLength
2013-09-05 20:30:04.861 Revista[63246:c07] 0.000000 63561.000000-------------------------------------------- Finished Loading 

Вы, ребята, знаете, как заставить его загружаться по частям и заставить индикатор выполнения плавно перемещаться?


person Bilal    schedule 06.09.2013    source источник


Ответы (1)


Неважно, моя сеть слишком быстрая! Вот почему я не мог видеть, что идет загрузка, потому что она быстро становится молниеносной.

Спасибо Comcast!

person Bilal    schedule 06.09.2013