NSData dataWithContentsOfURL返回nil

时间:2014-12-13 15:20:03

标签: nsdata

我正在尝试从URL获取XML文件并将其存储在本地,但我发现[NSData dataWithContentsOfURL xxxx]返回nil给我。 错误消息显示为:operation couldn’t be completed. (Cocoa error 256.)

您能否帮助我查看我的代码并向我指出问题:

NSError* err = nil;
NSString* urlString = @"http://www.w3school.com.cn/example/xmle/note.xml";
NSURL* xmlUrl = [NSURL URLWithString:urlString];
NSData* xmlData = [NSData dataWithContentsOfURL:xmlUrl options: NSDataReadingUncached error: &err];

0 个答案:

没有答案