Accessing Cached Data
キャッシュされたデータにアクセスする
Control how URL requests make use of previously cached data.
どのようにURLリクエストが以前にキャッシュされたデータを利用するかを制御します。
Availability 有効性
Technology
@property(class, strong) NSURLCache
*sharedURLCache;
If your app doesn’t have special caching requirements or constraints, the default shared cache instance should be acceptable. Alternatively, you can create a custom NSURLCache
object and set it as the shared cache instance using set
. You should do so before making any calls to this method.
あなたのアプリが特別なキャッシュ要件または制約を持たないならば、省略時の共有キャッシュインスタンスが受け入れ可能であるべきです。あるいは、あなたはあつらえのNSURLCache
オブジェクトを作成してそれを共有キャッシュインスタンスとして、set
を使って設定できます。あなたは、このメソッドへの何らかの呼び出しをする前にそうすべきです。