gpt4 book ai didi

iphone - 缓存图像时出现 HJCacheClasses 错误

转载 作者:行者123 更新时间:2023-12-03 19:02:02 25 4
gpt4 key购买 nike

我正在使用 HJCache lib 在我的 iPhone 应用程序中缓存图像。

我收到以下错误,但不是所有图像,只是第一个(未)出现的图像。

HJMOFileCache 无法将加载文件移动到就绪文件/Users/joao__garcia/.../Library/Caches/imgcache/ready/http:__uni.....jpg

以下图像加载没有问题。有人知道发生了什么事吗?

我以这种方式获取目录:

    objMan = [[HJObjManager alloc] init];
NSString* cacheDirectory = [NSHomeDirectory() stringByAppendingString:@"/Library/Caches/imgcache"] ;
HJMOFileCache* fileCache = [[HJMOFileCache alloc] initWithRootPath:cacheDirectory];
objMan.fileCache = fileCache;

然后:

managedImage = [[HJManagedImageV alloc] initWithFrame:CGRectMake(96, 88, 185, 167)];

managedImage.url = [NSURL URLWithString:[NSString stringWithFormat:@"http:...",video.thumb_video]];
NSLog(@"%@", managedImage.url);

[objMan manage:managedImage];

// [objMan performSelectorOnMainThread:@selector(manage:) withObject:managedImage waitUntilDone:YES];
NSLog(@"image %@", managedImage.image);
[managedImage sizeToFit];
playVideoViewButton.backgroundColor = [UIColor colorWithPatternImage:managedImage.image];

最佳答案

我无法确定问题出在哪里,但我会提供一些关于如何查明问题所在的建议。

查看第 128 行的“HJCacheClasses/HJMOFileCache.m”文件:

[[NSFileManager defaultManager] moveItemAtPath:loadingFilename toPath:readyFilename error:&e];

没有任何东西可以捕获并显示错误,因此在该行添加一个断点,当它失败时,您应该能够看到“e”错误的含义。如果您可以将其包含在您的问题中,我也许可以告诉您问题是什么。

关于iphone - 缓存图像时出现 HJCacheClasses 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8896404/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com