我有其中包含了一些數據,我想用一個XML文件:解析XML文件 - 獲取值
<?xml version="1.0" encoding="UTF-8" ?>
<items>
<item name="product" price="19.95" where="store">
This is the first product.
</item>
<item name="product2" price="39.95" where="online">
This is the second product.
</item>
<item name="product3" price="99.95" where="garagesale">
This is the third product.
</item>
</items>
如果我做了4個陣列,一個名字,一個是價格,一個用於購買它的地方,一個用於描述,我如何將數據存入數組?
我想通過使用NSXMLParser,但不能得到name
,price
,where
或描述。
我被困在如何做到這一點。
任何幫助表示讚賞。
你讀過[the guide](http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/XMLParsing/Articles/HandlingElements.html)嗎? – 2011-05-21 12:17:45
[在iPhone上進行XML解析的最佳方法]的可能重複(http://stackoverflow.com/questions/842292/best-approach-for-xml-parsing-on-the-iphone)或[Simple XML Parsing]( http://stackoverflow.com/questions/3616447/parsing-xml-code-on-iphone-sdk(http://stackoverflow.com/questions/3616447/parsing-xml-code-on-iphone-sdk)解決XML的問題(http://stackoverflow.com/questions/3616447/parsing-xml-code-on-iphone-sdk) )或[在可可中解析XML](http://stackoverflow.com/questions/1089737/parsing-xml-in-cocoa)或[NSXMLParser on iPhone如何使用它?](http://stackoverflow.com/問題/ 2964503 /)。拿你的選擇。 – 2011-05-21 17:06:31
這是一個很好的教程,但有一件事我沒有得到幫助。你能告訴我,我怎樣才能讀取字符串「這是第一個產品」。 – 2012-04-08 15:53:31