http://www.tizag.com/xmlTutorial/xpathattribute.php
에 따르면 @ATTRIBUTE 로 찾으면 된다고 합니다.
그래서 "/problem/contents@type" 으로 찾아 보았으나..
XPath error : Invalid expression
/problem/contents@type
위와 같이 XPath Error 가 뜹니다.. ㅠㅡㅠ
그래서 'content' element를 구하고, 거기서 attribute를 가져오는 방식으로 시도 해보았습니다.
[xmlDoc nodesForXPath:@"/problem/contents" error:&error];
CXMLElement *theNode = [theNodes objectAtIndex:0];
[[[theNode attributeForName:@"type"] stringValue];
이렇게 하니 자~알 되는군요 !