Protocol
NSURLConnectionDelegate
A protocol that delegates of a URL connection implement to receive status about and provide feedback to the connection object.
あるプロトコル、それはURL接続の委任先が、接続オブジェクトについての状態を受け取ってそしてそれへとフィードバックを提供するために実装します。
Declaration
宣言
protocol NSURLConnectionDelegate
Overview
概要
Delegates of NSURLConnection
objects should implement either the NSURLConnectionDataDelegate
or NSURLConnectionDownloadDelegate
protocol in addition to the NSURLConnectionDelegate
protocol. Specifically:
NSURLConnection
オブジェクトの委任先は、NSURLConnectionDataDelegate
またはNSURLConnectionDownloadDelegate
プロトコルのどちらかを実装すべきです、NSURLConnectionDelegate
プロトコルに加えて。具体的には:
Delegates that wish to perform custom authentication handling should implement the connection(_:willSendRequestFor:)
method, which is the preferred mechanism for responding to authentication challenges. (See URLAuthenticationChallenge
for more information on authentication challenges.) If connection(_:willSendRequestFor:)
is not implemented, the older, deprecated methods connection(_:canAuthenticateAgainstProtectionSpace:)
, connection(_:didReceive:)
, and connection(_:didCancel:)
are called instead.
あつらえの認証取り扱いの実行を望む委任先は、connection(_:willSendRequestFor:)
メソッドを実装すべきです、それは認証チャレンジに応答するための好ましい仕組みです。(URLAuthenticationChallenge
を認証チャレンジに関するさらなる情報として見てください。)connection(_:willSendRequestFor:)
が実装されないならば、より古い、非推奨メソッドconnection(_:canAuthenticateAgainstProtectionSpace:)
、connection(_:didReceive:)
、そしてconnection(_:didCancel:)
が代わりに呼び出されます。
The connection(_:didFailWithError:)
method is called at most once if an error occurs during the loading of a resource. The connectionShouldUseCredentialStorage(_:)
method is called once, just before the loading of a resource begins.
connection(_:didFailWithError:)
メソッドは、多くとも一度だけ呼び出されます、もしエラーがリソースのロードの間に発生するならば。connectionShouldUseCredentialStorage(_:)
メソッドは一度だけ呼び出されます、リソースのロードが開始する直前に。
Topics
話題
Connection Authentication
接続認証
Connection Completion
接続完了
See Also
参照
URL Connection
URL接続
class NSURLConnection
An object that enables you to start and stop URL requests.
あなたにURLリクエストの開始および停止を可能にするオブジェクト。
protocol NSURLConnectionDataDelegate
A protocol that most delegates of a URL connection implement to receive data associated with the connection.
あるプロトコル、それはURL接続のほとんどの委任先が、接続と結びつけられたデータを受け取るために実装します。
protocol NSURLConnectionDownloadDelegate
A protocol that delegates of a URL connection created with Newsstand Kit implement to receive data associated with a download.
あるプロトコル、それはNewsstand Kitで作成されたURL接続の委任先が、あるダウンロード結びつけられたデータを受け取るために実装します。