- initWithScheme:host:path:
- URLHandleUsingCache:
- loadResourceDataNotifyingClient:usingCache:
- setResourceData:
- propertyForKey:
- setProperty:forKey:
Availability 有効性
Technology
- (NSData
*)resourceDataUsingCache:(BOOL)shouldUseCache;
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
ならば、データは常に直接にロードされます、キャッシュを参考にすることなしに。
The receiver's resource data. レシーバのもつリソースデータ。
If the receiver has not already loaded its resource data, it will attempt to load it as a blocking operation. レシーバがまだそれのリソースデータをロードしていないならば、それは、それをあるブロッキング演算としてロードしようと試みます。
In OS X v10.4, this method requests that the data be sent with gzip compression, however it does not automatically decompress the data if the server complies with this request. Data is automatically decompressed in macOS 10.5 and later. OS X 10.4では、このメソッドは、データがgzip圧縮で送信されることを要請します、しかしながらそれは自動的にデータを圧縮しません、もしサーバーがこのリスエストに応じるならば。データは、macOS 10.5以降では自動的に圧縮されます。
Use the NSURLSession
or NSURLConnection
classes for loading content from remote URLs.
NSURLSession
またはNSURLConnection
クラスをリモートURLからコンテンツをロードするのに使ってください。
- initWithScheme:host:path:
- URLHandleUsingCache:
- loadResourceDataNotifyingClient:usingCache:
- setResourceData:
- propertyForKey:
- setProperty:forKey: