gpt4 book ai didi

ios - 在 iOS 中从 RSS Feed 获取图像

转载 作者:行者123 更新时间:2023-11-28 19:04:59 25 4
gpt4 key购买 nike

我目前正在获取 RSS 提要中项目的标题、日期和链接。我想将每个项目的图像添加到我的 tableview 单元格中,我知道该怎么做。我遇到的问题是弄清楚如何获取图像的 url。

带有图像 URL 的 XML 如下所示:

<description>&lt;img src="http://images.cdn.bigcartel.com/bigcartel/product_images/128552379/max_h-300+max_w-300/LipsITUNES.jpg" title="The Lips- Album Numero Dos" align="left" style="margin:0 10px 10px 0;" /&gt;

Picking up where the previous album left off (self-titled, don't go looking for "Album Numero Uno") The Lips return with 12 new songs and their unique blend of indie garage rock.

Includes the single "Useless" and "My Name Is Suicide."</description>

这里也有:

<media:thumbnail height="75" url="http://images.cdn.bigcartel.com/bigcartel/product_images/128552379/max_h-75+max_w-75/LipsITUNES.jpg" width="75"/>
<media:description type="html">

最佳答案

使用 didStartElement 委托(delegate)方法。

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI 
qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict{

if (nil != qualifiedName)
{
elementName = qualifiedName;
}

if ( [elementName isEqualToString:@"media:thumbnail"] )
{
self.currentItem.mediaUrl = [attributeDict valueForKey:@"url"];
}
}

更多详情请查看这里iPhone RSS Reader Application with source code

关于ios - 在 iOS 中从 RSS Feed 获取图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21242457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com