我正在尝试使用NSXMLParser
解析RSS提要(http://www.themostunrealbeats.com/?feed=rss2)。我很难找到文章中的图片。这是RSS提要中的图片。
<media:content url="http://themostunrealbeats.files.wordpress.com/2012/03/madeon.png?w=400" medium="image">
<media:title type="html">madeon</media:title>
</media:content>
具体来说,我想要
http://themostunrealbeats.files.wordpress.com/2012/03/madeon.png
。但是在NSXMLParser
的委托方法中,我什么也没找到。- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
if ([element isEqualToString:@"media:content"]) {
NSLog(@"%@", string);
[content appendString:string];
}
}
string
没有价值。我该如何解析? 最佳答案
// NSXMLParser has a following method
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
// In this method parameter 'attributeDict' will return you all the sub attributes of main attribute.
// In your case its 'url' of Picture.
// I hope this will help you. Check this out.
关于iphone - 难以解析RSS feed,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15583194/