- initWithScheme:host:path:
- URLHandleUsingCache:
- resourceDataUsingCache:
- setResourceData:
- propertyForKey:
- setProperty:forKey:
Availability 有効性
Technology
- (void)loadResourceDataNotifyingClient:(id)client
usingCache:(BOOL)shouldUseCache;
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
ならば、データは常に直接にロードされます、キャッシュを参考にすることなしに。
A given NSURL object can perform only one background load at a time. 与えられたNSURLオブジェクトは、一度に1つのバックグラウンドロードだけを実行できます。
Use the NSURLSession
or NSURLConnection
classes for loading content from remote URLs.
NSURLSession
またはNSURLConnection
クラスをリモートURLからコンテンツをロードするのに使ってください。
- initWithScheme:host:path:
- URLHandleUsingCache:
- resourceDataUsingCache:
- setResourceData:
- propertyForKey:
- setProperty:forKey: