Instance Method インスタンスメソッド

initWithMemoryCapacity:diskCapacity:directoryURL:

Creates a URL cache object with the specified memory and disk capacities, in the specified directory. URLキャッシュオブジェクトをこの指定されたメモリとディスク容量で、指定されたディレクトリにおいて作成します。

Declaration 宣言

- (instancetype)initWithMemoryCapacity:(NSUInteger)memoryCapacity 
                          diskCapacity:(NSUInteger)diskCapacity 
                          directoryURL:(NSURL *)directoryURL;

Parameters パラメータ

memoryCapacity

The memory capacity of the cache, in bytes. キャッシュのメモリ容量、バイト数で。

diskCapacity

The disk capacity of the cache, in bytes. キャッシュのディスク容量、バイト数で。

directoryURL

The path to an on-disk directory at which to store the on-disk cache. If directory is nil, the cache uses a default directory. ディスク上のディレクトリへのパス、そこでディスク上キャッシュを格納することになります。directorynilならば、キャッシュは省略時のディレクトリを使います。

Discussion 議論

A disk cache measured in the tens of megabytes should be acceptable in most cases. 10メガバイトで測られるディスクキャッシュは、ほとんどの場合に受け入れ可能であるはずです。

See Also 参照

Creating a New Cache Object 新しいキャッシュオブジェクトを作成する