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