34
32

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

NSURLRequestのキャッシュを無効にする方法

Posted at

NSURLRequestNSMutableURLRequestを特にオプションを指定せずに使うと、サーバーからのレスポンスをキャッシュしてしまいます。
キャッシュを無効にするには以下の様にcachePolicyNSURLRequestReloadIgnoringLocalCacheDataを指定します。

.objectivec
NSURLRequest *request = [NSURLRequest requestWithURL:baseURL
    cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
    timeoutInterval:10];

cachePolicyに指定できるオプションは以下のいずれかです。

効果
NSURLRequestUseProtocolCachePolicy デフォルト。キャッシュが有り、それがまだ有効ならそれを使う。そうでなければサーバーから取得する。
NSURLRequestReloadIgnoringLocalCacheData キャッシュを使用せず常にサーバーにリクエストする。
NSURLRequestReturnCacheDataElseLoad キャッシュデータがどれだけ古かろうが、キャッシュが有ればそれを使う。キャッシュがない場合だけサーバーにリクエストする。
NSURLRequestReturnCacheDataDontLoad キャッシュが有ればそれを使う。キャッシュがなければサーバーにリクエストすることなく失敗する。
34
32
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
34
32

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?