我正在尝试解析 YouTube 数据 API 提供的 YouTube 提要。此提要列出了特定用户上传的所有视频,例如:https ://gdata.youtube.com/feeds/api/users/google/uploads?v=2
我在我的 iOS 应用程序中使用 touchXML。我尝试<entry>
使用 CXMLDocument 中的 nodesForXPath 函数收集所有节点。
NSURL *url = [NSURL URLWithString: newsFeedUrl];
CXMLDocument *feedParser = [[CXMLDocument alloc] initWithContentsOfURL:url options:0 error:nil];
NSArray *resultNodes = [feedParser nodesForXPath:@"//entry" error:nil];
NSLog(@"%@",resultNodes.count); // >>> return (null)
但是这个查询不返回任何东西。我检查了 xpath 语法;我不认为这是错的。