- connectionDidFinishLoading:
Sent when a connection has finished loading successfully.
接続がロードをうまく完了した場合に送られます。
Availability 有効性
Technology
- (void)connection:(NSURLConnection
*)connection
didSendBodyData:(NSInteger
)bytesWritten
totalBytesWritten:(NSInteger
)totalBytesWritten
totalBytesExpectedToWrite:(NSInteger
)totalBytesExpectedToWrite;
connection
The connection sending the message. メッセージを送っている接続。
bytesWritten
The number of bytes written in the latest write. 最後の書き込みにおいて書かれたバイト数。
totalBytesWritten
The total number of bytes written for this connection. この接続に対して書き込まれたバイトの総数。
totalBytesExpectedToWrite
The number of bytes the connection expects to write. 接続が書き込むつもりであるバイト数。
This method provides an estimate of the progress of a URL upload. このメソッドは、URLアップロードの進捗の見積もりを提供します。
The value of total
may change during the upload if the request needs to be retransmitted due to a lost connection or an authentication challenge from the server.
total
の値は、アップロードの間に変化するかもしれません、もしリクエストが、接続切断またはそのサーバからの認証チャレンジによって再送信される必要があるならば。
- connectionDidFinishLoading: