1

を使用してRSSフィード( http://www.themostunrealbeats.com/?feed=rss2)を解析しようとしていNSXMLParserます。記事で写真を見つけるのに苦労しています。これが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価値はありません。どうすればこれを解析できますか?

4

1 に答える 1

5
// 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.
于 2013-03-23T04:26:17.917 に答える