Initializer

init(name:value:)

Initializes a newly allocated query item with the specified name and value. 新しくアロケートされたクエリ項目をこの指定された名前と値で初期化します。

Declaration 宣言

init(name: String, 
value: String?)

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 戻り値

An initialized 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インスタンスに割り当てることは自動的にその名前および値プロパティを符号化することから、あなたはそれら文字列をパーセント符号化するべきではありません。