所有
我有这个链接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];
任何教程。 。你有。然后把它交给我
答案 0 :(得分:0)
我认为您的网址不正确。它是返回HTML,而不是XML。尝试通过添加格式参数来指定网址中所需的格式。
NSString *someXML = @"http://en.wikipedia.org/w/api.php?action=query&prop=revisions& titles=New_York_Yankees&rvprop=timestamp|user|comment|content&format=xml