- initWithName:value:
The name of the query item. For example, in the URL http://www
, the name
parameter is q
.
クエリ項目の名前。例えば、URL http://www
において、name
パラメータはq
です。
Availability 有効性
Technology
name
The name of the query item. For example, in the URL http://www
, the name
parameter is q
.
クエリ項目の名前。例えば、URL http://www
において、name
パラメータはq
です。
value
The value for the query item. For example, in the URL http://www
, the value
parameter is i
.
クエリ項目に対する値。例えば、URL http://www
において、value
パラメータはi
です。
A new query item object. 新しいクエリ項目オブジェクト。
To use the newly initialized query item in composing a URL, add it to the query
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
インスタンスのquery
配列に加えてください。いくつかのクエリ項目からなるある配列をNSURLComponents
インスタンスに割り当てることは自動的にその名前および値プロパティを符号化することから、あなたはそれら文字列をパーセント符号化するべきではありません。
- initWithName:value: