- initWithMemoryCapacity:diskCapacity:diskPath:
Creates a URL cache object with the specified values.
URLキャッシュオブジェクトをこれら指定された値で作成します。
Availability 有効性
Technology
- (instancetype)initWithMemoryCapacity:(NSUInteger
)memoryCapacity
diskCapacity:(NSUInteger
)diskCapacity
directoryURL:(NSURL
*)directoryURL;
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.
ディスク上のディレクトリへのパス、そこでディスク上キャッシュを格納することになります。directory
がnil
ならば、キャッシュは省略時のディレクトリを使います。
A disk cache measured in the tens of megabytes should be acceptable in most cases. 10メガバイトで測られるディスクキャッシュは、ほとんどの場合に受け入れ可能であるはずです。
- initWithMemoryCapacity:diskCapacity:diskPath: