- connection:didReceiveResponse:
Sent when the connection has received sufficient data to construct the URL response for its request.
接続がそれのリクエストに対するURL応答を組み立てるのに十分なデータを受け取った場合に送られます。
Availability 有効性
Technology
- (void)connection:(NSURLConnection
*)connection
didReceiveData:(NSData
*)data;
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ロードに対する完全なデータを作り上げるべきです。
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. このメソッドは、ロードされたデータを回収する唯一の方法を非同期委任先に対して提供します。このデータをそれが配達されるときに保持またはコピーするのは委任先の責任です。
- connection:didReceiveResponse: