Protocol
NSURLDownloadDelegate
A protocol that URL download delegates implement to interact with a URL download request.
URLダウンロード委任先がURLダウンロードリクエストと相互作用するために実装するプロトコル。
Declaration
宣言
protocol NSURLDownloadDelegate
Overview
概要
The NSURLDownloadDelegate
protocol defines methods that allow an object to receive informational callbacks about the asynchronous load of a download’s URL request. Other delegate methods provide facilities that allow the delegate to customize the process of performing an asynchronous URL load.
NSURLDownloadDelegate
プロトコルは、あるダウンロードの持つURLリクエストの非同期ロードについてのコールバック情報を受け取ることをあるオブジェクトに可能にするメソッドを定義します。その他の委任先メソッドはさまざまな設備を提供します、それらは、委任先が非同期URLロードを実行する過程をカスタマイズできるようにするものです。
Note that these delegate methods will be called on the thread that started the asynchronous load operation for the associated NSURLDownload
object.
これらの委任先メソッドは、結びつけられたNSURLDownload
オブジェクトに対する非同期ロード演算を開始したスレッド上で呼び出されることに注意してください。
Topics
話題
Download Authentication
ダウンロード認証
Download Data and Responses
ダウンロードデータおよび応答
Download Completion
ダウンロード完了
func downloadDidFinish(NSURLDownload)
Sent when a download object has completed downloading successfully and has written its results to disk.
ダウンロードオブジェクトがダウンロードをうまく完了したそしてそれの結果をディスクに書き込んだ場合に送られます。
See Also
参照
URL Download
URLダウンロード
class NSURLDownload
An object that downloads a resource asynchronously and saves the data to a file.
リソースを非同期にダウンロードしてそのデータをファイルに保存するオブジェクト。