The name of the query item. For example, in the URL http://www
, the name
parameter is q
.
クエリ項目の名前。例えば、URL http://www
において、name
パラメータはq
です。
init(name:value:)
Availability 有効性
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
name
.apple .com/search/?q=i Pad .apple .com/search/?q=i Pad value
The value for the query item. For example, in the URL
http://www
, the.apple .com/search/?q=i Pad value
parameter isi
. クエリ項目に対する値。例えば、URLPad http://www
において、.apple .com/search/?q=i Pad value
パラメータはi
です。Pad
Return Value 戻り値
An initialized query item object. 初期化されたクエリ項目オブジェクト。
Discussion 議論
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
インスタンスに割り当てることは自動的にその名前および値プロパティを符号化することから、あなたはそれら文字列をパーセント符号化するべきではありません。