Initializer
init(contentsOf:options:)
Initializes a data object with the data from the location specified by a given URL.
あるデータオブジェクトをある与えられたURLによって指定される場所からのデータで初期化します。
Parameters
パラメータ
aURL
The URL from which to read data.
それからデータを読み出すことになるURL。
mask
A mask that specifies options for reading the data. Constant components are described in NSData.ReadingOptions
.
データ読み出しに対するオプションを指定するあるマスク。定数構成要素それらは、NSData.ReadingOptions
において記述されます。
Discussion
議論
Use this method to convert data://
URLs to NSData objects. You can also use it to read short files synchronously. If you need to read potentially large files, initialize an InputStream
with inputStreamWithURL:
, then read the file incrementally.
あなたが潜在的に大きなファイルを読み出す必要があるならば、InputStream
をinputStreamWithURL:
で初期化して、その後でファイルを徐々に読み出してください。
See Also
参照
Reading Data from a File
ファイルからデータを読み出す
init?(contentsOf: URL)
Initializes a data object with the data from the location specified by a given URL.
あるデータオブジェクトをある与えられたURLによって指定される場所からのデータで初期化します。
init?(contentsOfMappedFile: String)
Initializes a data object with the contents of the mapped file specified by a given path.
あるデータオブジェクトをある与えられたパスによって指定されるマップファイルの内容で初期化します。
Deprecated
非推奨
Related Documentation
関連文書