Type Method 型メソッド

queryItemWithName:value:

Creates a new query item with the specified name and value. 新しいクエリ項目をこの指定された名前と値で作成します。

Declaration 宣言

+ (instancetype)queryItemWithName:(NSString *)name 
                            value:(NSString *)value;

Parameters パラメータ

name

The name of the query item. For example, in the URL http://www.apple.com/search/?q=iPad, the name parameter is q. クエリ項目の名前。例えば、URL http://www.apple.com/search/?q=iPadにおいて、nameパラメータはqです。

value

The value for the query item. For example, in the URL http://www.apple.com/search/?q=iPad, the value parameter is iPad. クエリ項目に対する値。例えば、URL http://www.apple.com/search/?q=iPadにおいて、valueパラメータはiPadです。

Return Value 戻り値

A new query item object. 新しいクエリ項目オブジェクト。

Discussion 議論

To use the newly initialized query item in composing a URL, add it to the queryItems array of an NSURLComponents instance. Because assigning an array of query items to an NSURLComponents instance automatically encodes the name and value properties, you should not percent-encode these strings. 新しく初期化されたクエリ項目をあるURLを構成するのに使うには、それをNSURLComponentsインスタンスのqueryItems配列に加えてください。いくつかのクエリ項目からなるある配列をNSURLComponentsインスタンスに割り当てることは自動的にその名前および値プロパティを符号化することから、あなたはそれら文字列をパーセント符号化するべきではありません。

See Also 参照

Creating a Query Item クエリ項目を作成する