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

Relationships 関係

Inherits From 継承元

See Also 参照

URL Connection URL接続