1

我正在我正在开发的应用程序中构建图像缓存,其中缓存是 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 写入正常?

4

3 回答 3

1

属性列表键必须是字符串,不能是日期。这里的这个页面说:

尽管 NSDictionary 和 CFDictionary 对象允许它们的键是任何类型的对象,但如果键不是字符串对象,则集合不是属性列表对象。

您需要的是字典中的字典,例如:

NSDictionary *imageInfo = @{ @"date" : [NSDate date], @"data" : imageData };

NSDictionary *mainCacheDict = @{ imageURLAsString : imageInfo };

这样,缓存字典仍然将字符串 URL 作为键,但值是包含日期和图像数据的第二个字典(通过使用字符串键@"date"和访问@"data")。这是符合属性列表的,因此您可以继续使用writeToFile:andinitWithContentsOfFile:方法。

于 2013-10-23T09:03:31.567 回答
0

问题出在您在字典中制作的数据中。试试下面: -

NSData *imageData = UIImageJPEGRepresentation(image, 1.0);
NSString *imageURLAsString = [imageURL absoluteString];
NSDate *currentTime = [NSDate date];
//Below your code has modified
  [imageCacheDictionary setObject:currentTime forKey:imageDataWithTime];
  NSDictionary *imageDataWithTime =[NSDictionary dictionaryWithObject:imageCacheDictionary forKey:imageURLAsString];

if ([imageDataWithTime writeToFile:@"yourPath" atomically:YES]) {
    NSLog(@"file written");
} else {
    NSLog(@"file NOT written");
}
于 2013-10-23T06:01:20.313 回答
0

试试这个:我修改了你的代码:

NSData *imageData = UIImageJPEGRepresentation(image, 1.0);
    NSDate *currentTime = [NSDate date];
    NSDictionary *imageDataWithTime = @{currentTime : imageDataWithTime};
    NSMutableData *data = [[NSMutableData alloc] init];
    NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
    [archiver encodeObject:imageDataWithTime forKey:@"Some Key Value"];
    [archiver finishEncoding];
    if ([data writeToURL:cacheURL atomically:YES]) {
        NSLog(@"file written");
    } else {
        NSLog(@"file NOT written");
    }
于 2013-10-23T07:05:12.223 回答