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

loadResourceDataNotifyingClient:usingCache:

Loads the receiver’s resource data in the background. レシーバのもつリソースデータをバックグラウンドでロードします。

Declaration 宣言

- (void)loadResourceDataNotifyingClient:(id)client 
                             usingCache:(BOOL)shouldUseCache;

Parameters パラメータ

client

The client of the loading operation. client is notified of the receiver’s progress loading the resource data using the NSURLClient informal protocol. The NSURLClient messages are delivered on the current thread and require the run loop to be running. ロード操作のクライアント。clientは、NSURLClient非形式プロトコルを使ってリソースデータをロードするレシーバのもつ進捗を通知されます。NSURLClientメッセージは、現在のスレッド上で配達されます、そして実行ループが動作していることを必要とします。

shouldUseCache

Whether the URL should use cached resource data from an already loaded URL that refers to the same resource. If YES, the cache is consulted when loading data. If NO, the data is always loaded directly, without consulting the cache. そのURLは、キャッシュされたリソースデータを、同じリソースに言及する既にロードされたあるURLから使うべきかどうか。YESならば、データをロードする時にキャッシュが参考にされます。NOならば、データは常に直接にロードされます、キャッシュを参考にすることなしに。

Discussion 議論

A given NSURL object can perform only one background load at a time. 与えられたNSURLオブジェクトは、一度に1つのバックグラウンドロードだけを実行できます。

Special Considerations 特別な注意事項

Use the NSURLSession or NSURLConnection classes for loading content from remote URLs. NSURLSessionまたはNSURLConnectionクラスをリモートURLからコンテンツをロードするのに使ってください。

See Also 参照

Deprecated 非推奨