文件名称:AKLruDictionary:LRU(最近最少使用)内存缓存数据结构,具有与 NSCache 类似的 API
文件大小:14KB
文件格式:ZIP
更新时间:2024-07-12 07:28:26
Objective-C
LRUD字典 LRU(最近最少使用)内存缓存数据结构,具有与 NSCache 类似的 API 用法 // Create cache for UIImage objects with total max size of 2 MB, objects exceeding size of 150 KB will be ignored self.cache = [[AKLruDictionary alloc ] initWithCountLimit: NSUIntegerMax perObjectCostLimit: 2 * 1024 * 1024 costLimit: 150 * 1024 ]; ... - (UIImage*)
【文件预览】:
AKLruDictionary-master
----LICENSE(1KB)
----AKLruDictionary.podspec(688B)
----.gitignore(495B)
----AKLruDictionary()
--------AKLruDictionaryTests()
--------AKLruDictionary()
--------AKLruDictionary.xcodeproj()
----README.md(2KB)