Initializer

init(dataRepresentation:relativeTo:isAbsolute:)

Initializes a newly created URL using the contents of the given data, relative to a base URL. 新しく作成されたURLをこの与えられたデータの内容を使って初期化します、ある基盤URLに相対します。

Declaration 宣言

init?(dataRepresentation: Data, relativeTo url: URL?, isAbsolute: Bool = false)

Discussion 議論

If the data representation isn’t a legal URL string as ASCII bytes, the URL object may not behave as expected. This initializer returns nil if it can’t form a valid URL from the provided string. そのデータ表現がASCIIバイトとして合法URL文字列でないならば、URLオブジェクトは期待されたように振舞わないかもしれません。このイニシャライザはnilを返します、もしそれが有効なURLをその提供された文字列から形成できないならば。

See Also 参照

Working with the Data Representation of a URL URLのデータ表現を扱う