Instance Method インスタンスメソッド

connection(_:didReceive:)

Sent as a connection loads data incrementally. 接続がデータを漸増的にロードするときに送られます。

Declaration 宣言

optional func connection(_ connection: NSURLConnection, 
              didReceive data: Data)

Parameters パラメータ

connection

The connection sending the message. メッセージを送っている接続。

data

The newly available data. The delegate should concatenate the contents of each data object delivered to build up the complete data for a URL load. 新しい利用可能なデータ。委任先は、配達された各dataオブジェクトを鎖状につないで、URLロードに対する完全なデータを作り上げるべきです。

Discussion 議論

This method provides the only way for an asynchronous delegate to retrieve the loaded data. It is the responsibility of the delegate to retain or copy this data as it is delivered. このメソッドは、ロードされたデータを回収する唯一の方法を非同期委任先に対して提供します。このデータをそれが配達されるときに保持またはコピーするのは委任先の責任です。

See Also 参照

Handling Incoming Data やってくるデータを取り扱う