iphone - 图像缓存问题
<p><p>我有一个带有 UITableView 的 iPhone 应用程序。我从互联网上下载图像并将它们放在 TableViewcell 中。首先我缓存图像,然后将它们加载到 TableView 中。乍一看,看起来图像缓存得很好,并且在 tableview 中加载得很好。但是当我滚动 TableView 时,应用程序崩溃并出现错误:</p>
<pre><code>Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-: unrecognized selector sent to instance 0x6e4d800'
</code></pre>
<p>我使用此教程/示例来缓存图像:<a href="http://www.makebetterthings.com/blogs/iphone/image-caching-in-iphone-sdk/" rel="noreferrer noopener nofollow">http://www.makebetterthings.com/blogs/iphone/image-caching-in-iphone-sdk/</a> </p>
<p>有谁知道出了什么问题以及我必须做些什么来解决这个问题?</p>
<p>谢谢,</p>
<p>杰勒</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您正在调用一个不存在的 NSString 上的方法(该方法是 <code>isFileURL</code>)。该方法存在于 NSURL 上,所以我想解决方案是这样的:</p>
<pre><code>// Turn the string into a url
NSString *myPath = @"/cache/image1.png";
NSURL *myURL = ;
// This line would previously have crashed
BOOL isFile = ;
</code></pre>
<hr/>
<p>另一种可能性是你认为你正在使用一个 NSURL 但你忘了 <code>retain</code> 它:)</p></p>
<p style="font-size: 20px;">关于iphone - 图像缓存问题,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/7124566/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/7124566/
</a>
</p>
页:
[1]