獲取數據我有這個鏈接http://en.wikipedia.org/w/api.php?action=query&prop=revisions&titles=New_York_Yankees&rvprop=timestamp|user|comment|content,我想從這個網址獲取。 (從中獲取數據)通過anyxml規則..當我運行此代碼時,它可以獲取任何數據
NSString *someXML = @"http://en.wikipedia.org/w/api.php?action=query&prop=revisions& titles=New_York_Yankees&rvprop=timestamp|user|comment|content";
TBXML *tbxml = [[TBXML tbxmlWithURL:[NSURL URLWithString:someXML]] retain];
records = [NSMutableArray array];
[records retain];
if (tbxml.rootXMLElement)
[self traverseElement:tbxml.rootXMLElement];
[tbxml release];
任何教程。 。你有。 PLZ。然後把它給我
請說明您嘗試了什麼以及您收到了哪些錯誤。 – sosborn
我已將該鏈接轉換爲xml formate。但沒有找到任何解決辦法,這裏是http://en.wikipedia.org/w/api.php?action=query&prop=revisions&titles=New_York_Yankees&rvprop=timestamp|user|comment|content&format=xml –
tbxml.rootXMLElement爲空回覆鏈路。任何解決方案.. –