ios - dataWithContentsOfFile 返回 null
<p><pre><code>NSString *path = dict[@"fileURL"];
NSData *imageData = ;
</code></pre>
<p>imageData 为空</p>
<pre><code>dict[@"fileURL"] =
/var/mobile/Containers/Data/Application/0906AB53-CE1F-45EF-8E00-9D0B7C98956C/Documents/ccc/image/1446625127.png
</code></pre>
<p>我下载了设备容器并且图像确实存在。
怎么了?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>检索您的文件失败。使用 <code>-dataWithContentsOfFile:options:error:</code> 找出失败的原因。</p>
<pre><code>NSError* error = nil;
NSString *path = dict[@"fileURL"];
NSData *data = ;
if (data == nil)
{
NSLog(@"Failed to read file, error %@", error);
}
else
{
// parse the value
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - dataWithContentsOfFile 返回 null,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33517464/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33517464/
</a>
</p>
页:
[1]