func connection(NSURLConnection, didReceive : URLResponse)
func connection(NSURLConnection, didReceive : Data)
Availability 有効性
Technology
protocol NSURLConnectionDataDelegate
The NSURLConnection
protocol describes methods that should be implemented by the delegate for an instance of the NSURLConnection
class. Many methods in this protocol existed as part of an informal protocol in previous versions of macOS and iOS.
NSURLConnection
プロトコルは、NSURLConnection
クラスのインスタンスのデリゲート(委任先)によって実装されるべきメソッドを記述します。このプロトコルの中の多くのメソッドは、以前のバージョンのmacOSおよびiOSでは非形式プロトコルの一部として存在しました。
In addition to the methods described in this protocol, an NSURLConnection
delegate should also implement the methods described in the NSURLConnection
protocol.
このプロトコルにおいて記述されるメソッドに加えて、NSURLConnection
委任先はまた、NSURLConnection
プロトコルにおいて記述されるメソッドも実装すべきです。
Note 注意
If you are using NSURLConnection
as part of Newsstand Kit on iOS, you should also implement the methods in the NSURLConnection
protocol.
あなたがNSURLConnection
をNewsstand Kitの一部としてiOS上で使っているならば、あなたはまたNSURLConnection
プロトコルの中のメソッドも実装すべきです。
func connection(NSURLConnection, didReceive : URLResponse)
func connection(NSURLConnection, didReceive : Data)
func connection(NSURLConnection, didSendBodyData : Int, totalBytesWritten : Int, totalBytesExpectedToWrite : Int)
func connectionDidFinishLoading (NSURLConnection)
func connection(NSURLConnection, willSend : URLRequest, redirectResponse : URLResponse?) -> URLRequest?
func connection(NSURLConnection, needNewBodyStream : URLRequest) -> InputStream?
NSURLConnection
needs to retransmit a request that has a body stream to provide a new, unopened stream.
NSURLConnection
が新しい、開かれていないストリームを提供するボディストリームを持つあるリクエストの再送信を必要とする場合に呼び出されます。
func connection(NSURLConnection, willCacheResponse : CachedURLResponse) -> CachedURLResponse?
class NSURLConnection
protocol NSURLConnectionDelegate
protocol NSURLConnectionDownloadDelegate