我有一个带有 UITableView 的 iPhone 应用程序。我从互联网上下载图像并将它们放在 TableViewcell 中。首先我缓存图像,然后将它们加载到 TableView 中。乍一看,看起来图像缓存得很好,并且在 tableview 中加载得很好。但是当我滚动 TableView 时,应用程序崩溃并出现错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSPathStore2 isFileURL]: unrecognized selector sent to instance 0x6e4d800'
我使用此教程/示例来缓存图像:http://www.makebetterthings.com/blogs/iphone/image-caching-in-iphone-sdk/
有谁知道出了什么问题以及我必须做些什么来解决这个问题?
谢谢,
杰勒
您正在调用一个不存在的 NSString 上的方法(该方法是 isFileURL
)。该方法存在于 NSURL 上,所以我想解决方案是这样的:
// Turn the string into a url
NSString *myPath = @"/cache/image1.png";
NSURL *myURL = [NSURL fileURLWithPath:myPath];
// This line would previously have crashed
BOOL isFile = [myURL isFileURL];
另一种可能性是你认为你正在使用一个 NSURL 但你忘了 retain
它
关于iphone - 图像缓存问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7124566/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |