var string: String?
var url: URL?
Availability 有効性
Technology
baseURL
If non-nil
, this URL is used as the base URL portion of the resulting URL object.
非nil
ならば、このURLは、結果URLオブジェクトの基準URL部分として使われます。
If the components object has an authority component (user, password, host, or port) and a path component, then the path must either begin with "/"
or be an empty string. Otherwise, this property contains nil
.
構成要素オブジェクトがauthority構成要素(ユーザ、パスワード、ホスト、またはポート)とパス構成要素を持つならば、そのときパスは"/"
で始まるかまたは空の文字列かどちらかでなければなりません。そうでなければ、このプロパティはnil
を含みます。
If the NSURLComponents
does not have an authority component (user, password, host, or port) and has a path component, the path component must not start with "//"
. If it does, this property contains nil
.
NSURLComponents
がauthority構成要素(ユーザ、パスワード、ホスト、またはポート)を持っていないそしてパス構成要素を持つならば、パス構成要素は"//"
で始まってはいけません。そうするならば、このプロパティはnil
を含みます。
To configure a components object based on an existing URL, call either the components
or init(url:
method.
既存のURLに基づいて構成要素オブジェクトを構成設定するには、components
またはinit(url:
メソッドのどちらかを呼び出してください。
var string: String?
var url: URL?