私はウェブからファイルをダウンロードしています。ファイルのダウンロードを再開すると、ダウンロードを一時停止した時点からではなく、開始点から再開されます。ダウンロードを一時停止した時点で、ダウンロード ファイルの値を保存しました。しかし、一時停止したファイルのダウンロードを再開する方法がわかりません。このコードを使用して新しいファイルをダウンロードしています
url = [NSURL URLWithString:_item.link];
_receivedBytes = 0;
_speed = 0;
_lastTime = [[NSDate date] timeIntervalSince1970];
_connection = [ASIWebPageRequest requestWithURL:url];
[_connection setUrlReplacementMode:ASIReplaceExternalResourcesWithData];
[_connection setDelegate: self];
[_connection setDownloadProgressDelegate:self];
[_connection setDownloadCache:[ASIDownloadCache sharedCache]];
[_connection setDownloadDestinationPath: _item.path];
[_connection startAsynchronous];