だから私はメインスレッドでダウンロードを作成しています
NSURLRequest *request = [NSURLRequest requestWithURL:download.URL];
NSURLSessionDownloadTask *downloadTask = [self.downloadSession downloadTaskWithRequest:request];
[downloadTask resume];
ダウンロードに関連付けられた NSManagedContextID を NSMutableDictionary に追加して、後でデリゲート コールバックで取得できるようにします。
[self.downloads setObject:[download objectID] forKey:[NSNumber numberWithInteger:downloadTask.taskIdentifier]];
私self.downloadSession
の上記はこのように構成されています
- (NSURLSession *)backgroundSession
{
static NSURLSession *session = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfiguration:@"com.test.backgroundSession"];
configuration.discretionary = YES;
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
{
NSManagedObjectID *downloadID = [self.downloads objectForKey:[NSNumber numberWithInteger:downloadTask.taskIdentifier]];
double progress = (double)totalBytesWritten / (double)totalBytesExpectedToWrite;
NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:downloadID,@"download",[NSNumber numberWithDouble:progress],@"progress", nil];
[[NSNotificationCenter defaultCenter] postNotificationName:@"DownloadProgress" object:nil userInfo:userInfo];
}
そのため、self.downloads にアクセスして正しい objectID を取得すると、実際には、作成されたスレッドとは別のスレッドから NSMutableDictionary にアクセスしています。NSMutableDictionary はスレッドセーフではないと思います。それで、これに対する最善の解決策は何ですか、私はこのようなものを使うことができました
session = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:[NSOperationQueue mainQueue]];
セッションを宣言するときに、デリゲート キューを mainQueue に設定します。これにより、すべてのデリゲートがメイン スレッドで呼び出されますが、可能であればすべてのコールバックをバックグラウンド スレッドに保持したいと考えています。