The scheme for the NSURL object. For example, in the URL http://www
, the scheme is http
.
NSURLオブジェクトに対するスキーム。例えば、URL http://www
において、スキームはhttp
です。
Initializerinit(scheme:
init(scheme:host:path:)
Initializes a newly created NSURL with a specified scheme, host, and path.
新しく作成されたNSURLを初期化します、指定されたスキーム、ホスト、そしてパスを使います。
Availability 有効性
- iOS 2.0–9.0 Deprecated
- iPadOS 2.0–9.0 Deprecated
- macOS 10.0–10.11 Deprecated
- Mac Catalyst 13.1–13.1 Deprecated
- tvOS 9.0–9.0 Deprecated
- watchOS 2.0–2.0 Deprecated
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
scheme
.example .com/index .html .example .com/index .html host
The host for the NSURL object (for example,
www
). May be the empty string. NSURLオブジェクトに対するホスト(例えば、.example .com www
)。空の文字列かもしれません。.example .com path
The path for the NSURL object (for example,
/index
). If the path begins with a tilde, you must first expand it by calling.html expanding
. NSURLオブジェクトに対するパス(例えば、Tilde In Path /index
)。パスがチルダで始まるならば、あなたは最初にそれを.html expanding
を呼び出すことによって展開しなければいけません。Tilde In Path
Return Value 戻り値
The newly initialized NSURL object. 新しく初期化されたNSURLオブジェクト。
Discussion 議論
This method automatically uses percent encoding to escape the path
and host
parameters.
このメソッドは、自動的にパーセント符号化を使って、path
とhost
パラメータをエスケープします。
See Also 参照
Related Documentation 関連文書
URL Loading System
URLローディングシステム
Interact with URLs and communicate with servers using standard Internet protocols.
さまざまなURLと相互作用します、そしてさまざまなサービスと標準インターネットプロトコルを使って通信します。