次のxmlmutableDataがあります。
<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文字列を保持しています。signignData値を見つける必要があります。ただし、ノード配列で0オブジェクトを送信しています。コードの何が問題になっていますか?