+ cachedHandleForURL:
Returns the URL handle from the cache that has serviced the specified URL or another identical URL.
URLハンドルを、この指定されたURLまたは別の同一のURLに情報提供したキャッシュから返します。
Deprecated 非推奨
Use NSURLConnection
or NSURLDownload
instead; see URL Loading System.
NSURLConnection
またはNSURLDownload
を代わりに使ってください;URLローディングシステムを見てください。
Availability 有効性
Technology
- (id)initWithURL:(NSURL
*)anURL
cached:(BOOL)willCache;
aURL
The URL for the new handle. 新しいハンドルに対するURL。
willCache
YES
if the URL handle should cache its data and respond to requests from equivalent URLs for the cached data, NO
otherwise.
YES
、もしURLハンドルがそれのデータをキャッシュしてそしてキャッシュされたデータに同等のURLからのリクエストに応答すべきならば、そうでなければNO
。
Subclasses of NSURLHandle
must override this method.
NSURLHandle
のサブクラスは、このメソッドをオーバーライドしなければならない。
+ cachedHandleForURL: