init?(dataRepresentation : Data, relativeTo : URL?, isAbsolute : Bool)
Initializes a newly created URL using the contents of the given data, relative to a base URL.
新しく作成されたURLをこの与えられたデータの内容を使って初期化します、ある基盤URLに相対します。
Availability 有効性
Technology
var dataRepresentation: Data
{ get }
If the URL was initialized with init?(data
, the data representation returned are the same bytes as those used at initialization; otherwise, the data representation returned are the bytes of the relative
encoded with UTF8 string encoding.
URLがinit?(data
で初期化されたならば、返されるデータ表現は初期化で使われたものと同じバイトです;そうでなければ、返されるデータ表現はUTF8文字列エンコーディングでエンコードされたrelative
のバイトです。
init?(dataRepresentation : Data, relativeTo : URL?, isAbsolute : Bool)