Type Method 型メソッド

cookieWithProperties:

Creates and initializes an HTTP cookie object using the provided properties. HTTPクッキーオブジェクトをその提供されたプロパティを使って作成して初期化します。

Declaration 宣言

+ (NSHTTPCookie *)cookieWithProperties:(NSDictionary<NSHTTPCookiePropertyKey, id> *)properties;

Parameters パラメータ

properties

The properties for the new cookie object, expressed as key value pairs. 新しいクッキーオブジェクトに対する、キー値ペアとして表されるプロパティ。

Return Value 戻り値

The newly created cookie object. Returns nil if the provided properties are invalid. 新しく作成されたクッキーオブジェクト。nilを返します、もし提供されたプロパティが無効ならば。

Discussion 議論

To successfully create a cookie, you must provide values for (at least) the NSHTTPCookiePath, NSHTTPCookieName, and NSHTTPCookieValue keys, and either the NSHTTPCookieOriginURL key or the NSHTTPCookieDomain key. うまくクッキーを作成するには、あなたは値を(少なくとも)NSHTTPCookiePathNSHTTPCookieName、そしてNSHTTPCookieValueキー、そしてNSHTTPCookieOriginURLキーまたはNSHTTPCookieDomainキーのどちらかに提供しなければなりません。

See Accepting Cookies for more information on the available cookie attribute constants and the constraints imposed on the values in the dictionary. 利用可能なクッキー属性定数に、そして辞書の中の値に課せられる制約に関するさらなる情報としてクッキーを受け取るを見てください。

See Also 参照

Creating Cookies クッキーを作成する