Type Method 型メソッド

requestHeaderFieldsWithCookies:

Converts an array of cookies to a dictionary of header fields. クッキーの配列をヘッダフィールドからなる辞書に変換します。

Declaration 宣言

+ (NSDictionary<NSString *,NSString *> *)requestHeaderFieldsWithCookies:(NSArray<NSHTTPCookie *> *)cookies;

Parameters パラメータ

cookies

The cookies from which the header fields are created. それからヘッダフィールドが作成されるクッキー。

Return Value 戻り値

The dictionary of header fields created from the provided cookies. 提供されたクッキーから作成されたヘッダフィールドからなる辞書。

Discussion 議論

To send these headers as part of a URL request to a remote server, create an NSMutableURLRequest object, then call the allHTTPHeaderFields or setValue:forHTTPHeaderField: method to set the provided headers for the request. Finally, initialize and start an NSURLSessionTask instance based on that request object. これらのヘッダーをあるURLリクエストの一部としてリモートサーバーに送るには、NSMutableURLRequestオブジェクトを作成してください、それからallHTTPHeaderFieldsまたはsetValue:forHTTPHeaderField:メソッドを呼び出して、提供されたヘッダをそのリクエストに対して設定してください。最後に、NSURLSessionTaskインスタンスをそのリクエストオブジェクトに基づいて、初期化して開始してください