Instance Method インスタンスメソッド

downloadTaskWithURL:

Creates a download task that retrieves the contents of the specified URL and saves the results to a file. あるダウンロードタスクを作成します、それは指定されたURLの内容を取ってきます、そして結果をファイルに保存します。

Declaration 宣言

- (NSURLSessionDownloadTask *)downloadTaskWithURL:(NSURL *)url;

Parameters パラメータ

url

The URL to download. ダウンロードするURL。

Return Value 戻り値

The new session download task. 新しいセッションダウンロードタスク。

Discussion 議論

After you create the task, you must start it by calling its resume method. あなたがタスクを作成する後、あなたはそれを、それのresumeメソッドを呼び出すことによって開始しなければなりません。

See Also 参照

Adding Download Tasks to a Session ダウンロードタスクをセッションに加える