我正在使用NSXMLParser解析RSS feed。早些时候,我使用了cdata块中的图片网址,但现在我遇到了其中包含图片网址的供稿

<media:content url="http://cdn.example.com/wp-content/uploads/2013/10/article-2462931-18C5CBC000000578-776_634x452.jpg" medium="image"/>

如何从此标签中选择图片网址?这是我试图在didStartElement方法中使用的方法,但是它不起作用:
if ([elementName isEqual:@"media:content"])
    {
        currentString = [[NSMutableString alloc] init];

        // Basically i need the image url string at this point

        NSString *imageURLString = [self getFirstImageUrl:currentString];
        imageURL = [NSURL URLWithString:imageURLString];
        [self downloadThumbnails:imageURL];
    }

如何从媒体内容标签中选择图片网址字符串?谢谢!

最佳答案

我没有收到任何答案,但是尝试了不同的方法之后,我能够解决此问题。我现在要回答自己的问题,这样,如果有人遇到同样的问题,他们就可以解决这个问题,而不会像我一样浪费很多时间。

在NSXMLParser的didStartElement方法中,我编写了以下代码:

if ([elementName isEqual:@"media:content"])
    {
        NSString *imageURLString = [attributeDict objectForKey:@"url"];
        NSLog(@"imgURL %@",imageURLString);

        // Here you can use the imageURLString to download the image
    }

09-25 17:23