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:willSendRequestForAuthenticationChallenge: method, which is the preferred mechanism for responding to authentication challenges. (See NSURLAuthenticationChallenge for more information on authentication challenges.) If connection:willSendRequestForAuthenticationChallenge: is not implemented, the older, deprecated methods connection:canAuthenticateAgainstProtectionSpace:, connection:didReceiveAuthenticationChallenge:, and connection:didCancelAuthenticationChallenge: are called instead. あつらえの認証取り扱いの実行を望む委任先は、connection:willSendRequestForAuthenticationChallenge:メソッドを実装すべきです、それは認証チャレンジに応答するための好ましい仕組みです。(NSURLAuthenticationChallengeを認証チャレンジに関するさらなる情報として見てください。)connection:willSendRequestForAuthenticationChallenge:が実装されないならば、より古い、非推奨メソッドconnection:canAuthenticateAgainstProtectionSpace:connection:didReceiveAuthenticationChallenge:、そしてconnection:didCancelAuthenticationChallenge:が代わりに呼び出されます。

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 接続完了

Relationships 関係

Inherits From 継承元

See Also 参照

URL Connection URL接続