解析失败:
DDXMLDocument *resultDoc = [[DDXMLDocument alloc] initWithData:responseObject options:0 error:&error];
解决方法:
kissxml:The operation couldn’t be completed. (DDXMLErrorDomain error 1.)
这是使用kissxml出现的问题。
根据网络资料只需要把kissxml里边的DDXMLDocument类里面的代码(第95行)
xmlDocPtr doc = xmlParseMemory([data bytes], [data length]);
换成
xmlDocPtr doc = xmlRecoverMemory([data bytes], [data length]);
就可以了。
原文链接:http://supershll.blog.163.com/blog/static/370704362013611101022776/