Instance Method インスタンスメソッド

checkPromisedItemIsReachableAndReturnError(_:)

Returns whether the promised item can be reached. プロミス項目が到達されることができるかどうかを返します。

Declaration 宣言

func checkPromisedItemIsReachableAndReturnError(_ error: NSErrorPointer) -> Bool

Parameters パラメータ

error

The error that occurred when the promised item could not be reached. プロミス項目が到達されることができなかった場合に発生したエラー。

Return Value 戻り値

true if the promised item is reachable; otherwise, false. true、もしプロミス項目が到達可能ならば;そうでなければ、false

Discussion 議論

This method behaves identically to checkResourceIsReachableAndReturnError(_:), but works on promised items. A promised item is not guaranteed to have its contents in the file system until you use a file coordinator to perform a coordinated read on its URL, which causes the contents to be downloaded or otherwise generated. Promised item URLs are returned by various APIs, including: このメソッドはcheckResourceIsReachableAndReturnError(_:)とまったく同じに振るまいます、しかしプロミス項目上で働きます。プロミス項目は、それの内容をファイルシステムの中に持つことを保証されません、あなたがファイルコーディネータを使って協調読み込みをそれのURL上で実行するまでは、それはその内容がダウンロードされるかそうでなければ生成されることを引き起こします。プロミス項目URLは、様々なAPIによって返され、以下を含んでいます:

You must use this method instead of checkResourceIsReachableAndReturnError for any URLs returned by these methods. あなたは、このメソッドをcheckResourceIsReachableAndReturnErrorの代わりに、それらのメソッドによって返されるあらゆるURLに対して使わなければいけません。

See Also 参照

Working with Promised Items プロミス項目を扱う

Related Documentation 関連文書