TouchXMl(nodesForXPath)返回NULL对象

时间:2012-07-10 08:06:40

标签: iphone touchxml

我有以下xml mutableData。

<responce xmlns:xsi="http://.." xmlns:xsd="http://..." xmlns="http://...">
  <Succeeded id="0">
    <uri>userName</uri>
    <signatureData>PdppDDD8388OPDJJD==</signatureData>
  </Succeeded>
</responce>

我已经编写了以下代码行来解析上面的xml字符串。

CXMLDocument *doc=[[CXMLDocument alloc]initWithData:responseData options:0 error:nil];
NSArray *nodes=nil;
nodes=[doc nodesForXPath:@"//signatureData" error:nil];

这里的responceData保持在xml字符串之上。我必须找到signatureData值。但它在节点数组中发送0个对象。代码有什么问题?

0 个答案:

没有答案