- beginAccessingResourcesWithCompletionHandler:
- endAccessingResources
Availability 有効性
Technology
- (void)conditionallyBeginAccessingResourcesWithCompletionHandler:(void (^)(BOOL resourcesAvailable))completionHandler;
completionHandler
A block called when the availability of the resources has been checked. リソースの利用可能性が確認された場合に呼び出されるブロック。
The block takes the following parameter: ブロックは、以下のパラメータをとります。
Returns YES
if all of the resources marked with the tags managed by the request are already on the device. Returns NO
if any of the resources are not on the device.
YES
を返します、もしリクエストによって管理されるタグで印されたリソースの全てが、すでにデバイス上であるならば。NO
を返します、もしリソースのいずれかがデバイス上にないならば。
If the resources marked with the tags managed by the request are already on the device, you can start accessing them as soon as the completion handler is called with resources
set to YES
. If all of the resources are not already available, you need to call begin
to download them from the App Store.
リクエストによって管理されるタグで印されるリソースそれらが既にデバイス上であるならば、あなたはそれらにアクセスすることを、完了ハンドラがresources
をYES
に設定されることで呼び出されるやいなや、開始できます。リソースの全てがまだ利用可能でないならば、あなたはbegin
を呼び出してそれらをApp Storeからダウンロードする必要があります。
Important 重要
If resources
is YES
, do not call begin
. You must call this method or begin
before accessing any resources marked with the tags managed by the request.
resources
がYES
ならば、begin
を呼び出さないでください。あなたは、このメソッドまたはbegin
を、リクエストによって管理されるタグで印されるリソースのいずれかにアクセスする前に呼び出さなければなりません。
- beginAccessingResourcesWithCompletionHandler:
- endAccessingResources