我正在我正在开发的应用程序中构建图像缓存,其中缓存是 NSMutableDictionary。
最初字典看起来像这样:
NSMutableDictionary *imageCacheDictionary = [NSMutableDictionary initWithContentsOfURL:imageCacheURL];
//alloc-init imageCacheDictionary if nil
NSData *imageData = UIImageJPEGRepresentation(image, 1.0);
NSString *imageURLAsString = [imageURL absoluteString];
[imageCacheDictionary setObject:imageData forKey:imageURLAsString];
if ([imageCacheDictionary writeToURL:cacheURL atomically:YES]) {
NSLog(@"file written");
} else {
NSLog(@"file NOT written");
}
效果很好。
然后,当我决定添加代码以将缓存保持在一定大小以下时,我尝试添加一个标签,以便我可以先删除最旧的照片。
NSMutableDictionary *imageCacheDictionary = [NSMutableDictionary initWithContentsOfURL:imageCacheURL];
//alloc-init imageCacheDictionary if nil
NSData *imageData = UIImageJPEGRepresentation(image, 1.0);
NSString *imageURLAsString = [imageURL absoluteString];
NSDate *currentTime = [NSDate date];
NSDictionary *imageDataWithTime = @{currentTime : imageDataWithTime};
[imageCacheDictionary setObject:imageDataWithTime forKey:imageURLAsString];
if ([imageCacheDictionary writeToURL:cacheURL atomically:YES]) {
NSLog(@"file written");
} else {
NSLog(@"file NOT written");
}
这没有用。
据我所知,NSDate 是符合属性列表的,所以 writeToURL 应该让你写入磁盘,但不是。
然后我尝试使用 NSKeyedArchiver 将其转换为 NSData。
...
NSData *currentTimeAsData = [NSKeyedArchiver archivedDataWithRootObject:[NSDate date]];
NSDictionary *imageDataWithTime = @{currentTimeAsData : imageData};
...
还是行不通。
但是如果我将 NSDate 对象转换为 NSString 或者只是用 NSString 替换它,它就可以正常工作。
...
NSString *currentTime = [[NSDate date] description];
NSDictionary *imageDataWithTime = @{currentTime : imageData};
...
或者:
...
NSString *currentTime = @"Hey! Now is now!";
NSDictionary *imageDateWithTime = @{currentTime : imageData};
...
所以为什么?如果 NSDate 和 NSData 都符合属性列表,为什么它们都没有写入嵌套字典中的磁盘,而 NSString 写入正常?