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:
で初期化して、その後でファイルを徐々に読み出してください。
This initializer may fail and return nil
for various reasons, like bad URLs and file-not-found errors. If you want to handle these errors, use init(contentsOf:options:)
instead and catch the error it throws.
このイニシャライザは、不正なURLそしてファイルが見つからないエラーのような、さまざまな理由のために失敗して、nil
を返すかもしれません。あなたがこれらエラーを取り扱いたいならば、init(contentsOf:options:)
を代わりに使ってください、そしてそれがスローするエラーを捕らえてください。