- uploadTaskWithRequest:fromData:completionHandler:
- uploadTaskWithRequest:fromFile:
- uploadTaskWithRequest:fromFile:completionHandler:
- uploadTaskWithStreamedRequest:
NSURLSessionUploadTask
NSURLSessionDataDelegate
Availability 有効性
Technology
- (NSURLSessionUploadTask
*)uploadTaskWithRequest:(NSURLRequest
*)request
fromData:(NSData
*)bodyData;
request
A URL request object that provides the URL, cache policy, request type, and so on. The body stream and body data in this request object are ignored. URL、キャッシュ方針、リクエスト型、などを提供するURLリクエストオブジェクト。このリクエストオブジェクトの中のボディストリームとボディデータは、無視されます。
bodyData
The body data for the request. リクエストに対するボディデータ。
The new session upload task. 新しいセッションアップロードタスク。
An HTTP upload request is any request that contains a request body, such as a POST
or PUT
request. Upload tasks require you to create a request object so that you can provide metadata for the upload, like HTTP request headers.
HTTPアップロードリクエストは、あるリクエストボディ、たとえばPOST
やPUT
リクエストなど、を含んでいる何らかのリクエストです。アップロードタスクは、あなたにリクエストオブジェクトを作成するよう要求します、そうすることであなたはメタデータをそのアップロードに提供できます、HTTPリクエストヘッダのように。
After you create the task, you must start it by calling its resume
method. The task calls methods on the session’s delegate to provide you with the upload’s progress, response metadata, response data, and so on.
あなたがタスクを作成する後、あなたはそれを、それのresume
メソッドを呼び出すことによって開始しなければなりません。タスクは、メソッドをセッションのもつ委任先で呼び出して、あなたにアップロードのもつ進捗、応答メタデータ、応答データ、などを提供します。
- uploadTaskWithRequest:fromData:completionHandler:
- uploadTaskWithRequest:fromFile:
- uploadTaskWithRequest:fromFile:completionHandler:
- uploadTaskWithStreamedRequest:
NSURLSessionUploadTask
NSURLSessionDataDelegate