- dataTaskWithURL:completionHandler:
Creates a task that retrieves the contents of the specified URL, then calls a handler upon completion.
指定されたURLの内容を取ってきて、それからあるハンドラを完了に関して呼び出すタスクを作成します。
- dataTaskWithRequest:
Creates a task that retrieves the contents of a URL based on the specified URL request object.
指定されたURLリクエストオブジェクトに基づいてあるURLの内容を取ってくるタスクを作成します。
- dataTaskWithRequest:completionHandler:
Creates a task that retrieves the contents of a URL based on the specified URL request object, and calls a handler upon completion.
指定されたURLリクエストオブジェクトに基づいてあるURLの内容を取ってくるタスクを作成します、そしてあるハンドラを完了に関して呼び出します。
NSURLSessionDataTask
A URL session task that returns downloaded data directly to the app in memory.
ダウンロードされたデータを直接にアプリへとメモリ中に返すURLセッションタスク。
NSURLSessionDataDelegate
A protocol that defines methods that URL session instances call on their delegates to handle task-level events specific to data and upload tasks.
あるプロトコル、それはいくつかのメソッドを定義します、それらはURLセッションインスタンスがそれらの委任先上で呼び出して、データおよびアップロードタスクに特有なタスク水準イベントを取り扱うものです。