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

dataTaskWithURL:

Creates a task that retrieves the contents of the specified URL. 指定されたURLの内容を取ってくるタスクを作成します。

Declaration 宣言

- (NSURLSessionDataTask *)dataTaskWithURL:(NSURL *)url;

Parameters パラメータ

url

The URL to be retrieved. 回収されることになるURL。

Return Value 戻り値

The new session data task. 新しいセッションデータタスク。

Discussion 議論

After you create the task, you must start it by calling its resume method. The task calls methods on the session’s delegate to provide you with the response metadata, response data, and so on. あなたがタスクを作成する後、あなたはそれを、それのresumeメソッドを呼び出すことによって開始しなければなりません。タスクは、セッションのもつ委任先上でメソッドを呼び出して、あなたに応答メタデータ、応答データ、などを提供します。

See Also 参照

Adding Data Tasks to a Session データタスクをセッションに加える