func conditionallyBeginAccessingResources (completionHandler : (Bool) -> Void)
func endAccessingResources ()
Availability 有効性
Technology
completionHandler
A block called when the resources have finished downloading or if an error occurs. The resources are not available until the completion handler is called with error
set to nil
.
リソースがダウンロードを終えた時にまたはエラーが発生するならば呼び出されるブロック。リソースは利用可能ではありません、完了ハンドラがerror
をnil
に設定されることで呼び出されるまでは。
The block takes the following parameter: ブロックは、以下のパラメータをとります。
Set to nil
if the resources are downloaded successfully; otherwise this parameter holds an NSError
object describing the problem that occurred. Errors are usually due to a lack of free space or problems connecting with the App Store.
nil
に設定されます、もしリソースがうまくダウンロードされるならば;そうでなければこのパラメータは発生した問題を記述しているNSError
オブジェクトを保持します。エラーは、通常は空き容量の不足またはApp Storeとの接続の問題が原因です。
Concurrency Note 並行性注意
You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration: あなたは、このメソッドを同期コードから完了ハンドラを使って呼び出せます、このページで示されるように、またはあなたはそれを以下の宣言を持つ非同期メソッドとして呼び出せます:
For information about concurrency and asynchronous code in Swift, see Calling Objective-C APIs Asynchronously. Swiftにおける並行性と非同期コードについての情報として、Objective-C APIを非同期に呼び出すを見てください。
After calling this method, the resource request downloads any on-demand resources not already on the device. When all the resources are downloaded, they are marked as non-purgeable. The resources are not available to the app until the completion handler is called with no error. このメソッドを呼び出す後に、リソースリクエストはまだデバイス上にないあらゆるオンデマンドリソースをダウンロードします。すべてのリソースがダウンロードされる時、それらは除去可能でないとして印されます。リソースはアプリに利用可能ではありません、完了ハンドラがエラーなしで呼び出されるまでは。
Important 重要
You must call this method or conditionally
before accessing any resources marked with the tags managed by the request.
あなたは、このメソッドまたはconditionally
を、リクエストによって管理されるタグで印されるリソースのいずれかにアクセスする前に呼び出さなければなりません。
func conditionallyBeginAccessingResources (completionHandler : (Bool) -> Void)
func endAccessingResources ()