1

サーバーからmp3をダウンロードするためのこのコードがあります。すべてはポッドキャストを解析する Table View でセットアップされ、mp3 へのリンクは _entry.articleURL です。ほんの数分後、iPhone は接続を切断し、ダウンロードされた mp3 のほんの一部だけになってしまいます。これを引き起こしている可能性のあるアイデアはありますか?

-(void)didSelectRowAtIndexPath 
{     RSSEntry *entry = [_allEntries objectAtIndex:indexPath.row];

             self.nameit = entry.articleTitle;
             NSURL *url = [NSURL URLWithString:entry.articleUrl];    
             NSURLRequest *theRequest = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60];
             __block NSURLConnection *connection = [NSURLConnection connectionWithRequest:theRequest delegate:self];

             UIApplication *application = [UIApplication sharedApplication]; //Get the shared application instance

             __block UIBackgroundTaskIdentifier background_task; //Create a task object

             background_task = [application beginBackgroundTaskWithExpirationHandler: ^ {
                 // This code gets called when your app has been running in the background too long and the OS decides to kill it
                 // You might want to cancel your connection in this case, that way you won't receive delegate methods any longer.
                 [connection cancel];
                 [application endBackgroundTask: background_task]; //Tell the system that we are done with the tasks
                 background_task = UIBackgroundTaskInvalid; //Set the task to be invalid

                 //System will be shutting down the app at any point in time now
             }];

             self.backgroundTaskIdentifier = background_task;
             if (connection) {
                 receivedData = [[NSMutableData data] retain];
                 self.thetable = tableView;
                 self.thepath = indexPath;
             }
             else {
                 UIAlertView *cancelled = [[UIAlertView alloc] initWithTitle:@"Download Failed" message:@"Please check your network settings, and then retry the download." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
                 [cancelled show];
                 [cancelled release];
             }
}

- (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
progress.hidden = NO;
downloadInProgress = YES;
RSSEntry *entry = [_allEntries objectAtIndex:thepath.row];

self.nameit = entry.articleTitle;
downloadlabel.text = [NSString stringWithFormat:@"%@", nameit];
[thebar addSubview:downloadlabel];
[receivedData setLength:0];
expectedBytes = [response expectedContentLength];
}

- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
[receivedData appendData:data];
float progressive = (float)[receivedData length] / (float)expectedBytes;
[progress setProgress:progressive];


}

- (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
[connection release];
UIAlertView *connectionfailed = [[UIAlertView alloc] initWithTitle:@"Download Failed" message:@"Please check your network settings, and then retry the download." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[connectionfailed show];
[connectionfailed release];
progress.hidden = YES;
downloadInProgress = NO;
[downloadlabel removeFromSuperview];
[thetable deselectRowAtIndexPath:thepath animated:YES]; 
[[UIApplication sharedApplication] endBackgroundTask:self.backgroundTaskIdentifier];
self.backgroundTaskIdentifier = UIBackgroundTaskInvalid;
[connection release];



}

- (NSCachedURLResponse *) connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse {
return nil;
}

- (void) connectionDidFinishLoading:(NSURLConnection *)connection {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *pdfPath = [documentsDirectory stringByAppendingPathComponent:[nameit stringByAppendingString:@".mp3"]];
NSLog(@"Succeeded! Received %d bytes of data",[receivedData length]);
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
[receivedData writeToFile:pdfPath atomically:YES];
progress.hidden = YES;
downloadInProgress = NO;
[downloadlabel removeFromSuperview];

[thetable deselectRowAtIndexPath:thepath animated:YES]; 

[[UIApplication sharedApplication] endBackgroundTask:self.backgroundTaskIdentifier];
self.backgroundTaskIdentifier = UIBackgroundTaskInvalid;
}

問題は、不完全であっても、connectionDidFinishLoading が呼び出され続けているように見えることです。何かご意見は?

4

1 に答える 1

1

この作業を行うために beginBackgroundTaskWithExpirationHandler を使用している理由がわからない - その目的は、まったく別のタスク (アプリがバックグラウンドに移動した後に少し作業を行うこと) のためです。問題。

私がお勧めするのは、サンプルの Concurrent NSOperation デモ プロジェクトについて github などを調べ、それらを使用して非同期 NSURLConnections を実行することです。

また、コールバックのビューで GUI 要素を更新しています。UIKit を使用するには、メイン スレッドにいる必要があることに注意してください。何かを更新する必要がある場合は、ブロックを使用してメイン キューにディスパッチし、更新を行います。

于 2012-07-17T22:19:21.337 に答える