var string: String?
func url(relativeTo : URL?) -> URL?
Availability 有効性
Technology
var url: URL
? { get }
If the receiver 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 receiver 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
.
レシーバがauthority構成要素(ユーザ、パスワード、ホスト、またはポート)を持っていないそしてパス構成要素を持つならば、パス構成要素は"//"
で始まってはいけません。そうするならば、このプロパティはnil
を含みます。
If the receiver has nil
values for all component properties, such as when initializing with init()
, this property returns an NSURL
object with an empty string, because a URL always has a path—even if it’s an empty string.
レシーバがnil
値を全ての構成要素プロパティに対して持つならば、例えばinit()
で初期化する場合など、このプロパティは空の文字列を持つNSURL
オブジェクトを返します、なぜならURLは常にパスを持つからです — たとえそれが空の文字列であるとしても。
This property can be used only to obtain a URL based on the values of the other properties. To configure a components object based on an existing URL, call either the components
or init(url:
method.
このプロパティは、他のプロパティの値に基づいてURLを入手するためにのみ使われることができます。既存のURLに基づいて構成要素オブジェクトを構成設定するには、components
またはinit(url:
メソッドのどちらかを呼び出してください。
var string: String?
func url(relativeTo : URL?) -> URL?