0

アプリがアイドル状態のときに、大きな画像の一部をアプリにダウンロードする必要があります。また、ダウンロードが完了せず、数バイトしか取得されていないときに、アプリがバックグラウンドから削除された場合はどうなりますか?停止した場所からダウンロードを再開できますか?iOS6 でこれを使用できますか?これらは私が使用しているデリゲートメソッド。

- (NSURLSession *)backgroundSession
{
/*
 Using disptach_once here ensures that multiple background sessions with the same identifier are not created in this instance of the application. If you want to support multiple background sessions within a single process, you should create each session with its own identifier.
 */
    static NSURLSession *session = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfiguration:@"com.example.apple-samplecode.SimpleBackgroundTransfer.BackgroundSession"];
        session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
    });
    return session;
}


- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
{
    BLog();

    /*
     Report progress on the task.
     If you created more than one task, you might keep references to them and report on them individually.
     */

    if (downloadTask == self.downloadTask)
    {
        double progress = (double)totalBytesWritten / (double)totalBytesExpectedToWrite;
        BLog(@"DownloadTask: %@ progress: %lf", downloadTask, progress);
        dispatch_async(dispatch_get_main_queue(), ^{
            self.progressView.progress = progress;
        });
    }
}


- (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)downloadURL
{
    BLog();

    /*
     The download completed, you need to copy the file at targetPath before the end of this block.
     As an example, copy the file to the Documents directory of your app.
    */
    NSFileManager *fileManager = [NSFileManager defaultManager];

    NSArray *URLs = [fileManager URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask];
    NSURL *documentsDirectory = [URLs objectAtIndex:0];

    NSURL *originalURL = [[downloadTask originalRequest] URL];
    NSURL *destinationURL = [documentsDirectory URLByAppendingPathComponent:[originalURL lastPathComponent]];
    NSError *errorCopy;

    // For the purposes of testing, remove any esisting file at the destination.
    [fileManager removeItemAtURL:destinationURL error:NULL];
    BOOL success = [fileManager copyItemAtURL:downloadURL toURL:destinationURL error:&errorCopy];

    if (success)
    {
        dispatch_async(dispatch_get_main_queue(), ^{
            UIImage *image = [UIImage imageWithContentsOfFile:[destinationURL path]];
            self.imageView.image = image;
            self.imageView.hidden = NO;
            self.progressView.hidden = YES;
        });
    }
    else
    {
        /*
         In the general case, what you might do in the event of failure depends on the error and the specifics of your application.
         */
        BLog(@"Error during the copy: %@", [errorCopy localizedDescription]);
    }
}


- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
{
    BLog();

    if (error == nil)
    {
        NSLog(@"Task: %@ completed successfully", task);
    }
    else
    {
        NSLog(@"Task: %@ completed with error: %@", task, [error localizedDescription]);
    }

    double progress = (double)task.countOfBytesReceived / (double)task.countOfBytesExpectedToReceive;
    dispatch_async(dispatch_get_main_queue(), ^{
        self.progressView.progress = progress;
    });

    self.downloadTask = nil;
}


/*
 If an application has received an -application:handleEventsForBackgroundURLSession:completionHandler: message, the session delegate will receive this message to indicate that all messages previously enqueued for this session have been delivered. At this time it is safe to invoke the previously stored completion handler, or to begin any internal updates that will result in invoking the completion handler.
 */
- (void)URLSessionDidFinishEventsForBackgroundURLSession:(NSURLSession *)session
{
    APLAppDelegate *appDelegate = (APLAppDelegate *)[[UIApplication sharedApplication] delegate];
    if (appDelegate.backgroundSessionCompletionHandler) {
        void (^completionHandler)() = appDelegate.backgroundSessionCompletionHandler;
        appDelegate.backgroundSessionCompletionHandler = nil;
        completionHandler();
    }

    NSLog(@"All tasks are finished");
}


-(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didResumeAtOffset:(int64_t)fileOffset expectedTotalBytes:(int64_t)expectedTotalBytes
{
    BLog();
}
4

1 に答える 1

0

NSURLSession API は ios7 から利用できます。

NSURLSession-n でのデータの再開 場合によっては、キャンセルされた、または進行中に失敗したダウンロードを再開できます。これを行うには、最初に、ダウンロードの setDeletesFileUponFailure: メソッドに NO を渡して、失敗時に元のダウンロードがそのデータを削除しないようにします。元のダウンロードが失敗した場合は、resumeData メソッドを使用してそのデータを取得できます。その後、initWithResumeData:delegate:path: メソッドで新しいダウンロードを初期化できます。ダウンロードが再開されると、ダウンロードのデリゲートは download:willResumeWithResponse:fromByte: メッセージを受け取ります。

接続のプロトコルとダウンロードするファイルの MIME タイプの両方が再開をサポートしている場合にのみ、ダウンロードを再開できます。canResumeDownloadDecodedWithEncodingMIMEType: メソッドを使用して、ファイルの MIME タイプがサポートされているかどうかを判断できます。

バックグラウンド セッションでダウンロードをスケジュールすると、アプリが実行されていないときにダウンロードが続行されます。標準セッションまたはエフェメラル セッションでダウンロードをスケジュールする場合、アプリの再起動時にダウンロードを新たに開始する必要があります。

サーバーからの転送中に、ユーザーがアプリにダウンロードを一時停止するように指示した場合、アプリは cancelByProducingResumeData: メソッドを呼び出してタスクをキャンセルできます。後で、アプリは返された再開データを downloadTaskWithResumeData: または downloadTaskWithResumeData:completionHandler: メソッドに渡して、ダウンロードを続行する新しいダウンロード タスクを作成できます。

転送が失敗した場合、デリゲートの URLSession:task:didCompleteWithError: メソッドが NSError オブジェクトで呼び出されます。タスクが再開可能な場合、そのオブジェクトの userInfo ディクショナリには NSURLSessionDownloadTaskResumeData キーの値が含まれています。アプリは、到達可能性 API を使用して再試行のタイミングを決定し、次に downloadTaskWithResumeData: または downloadTaskWithResumeData:completionHandler: を呼び出して、そのダウンロードを続行する新しいダウンロード タスクを作成する必要があります。

于 2014-06-12T10:24:01.910 に答える