1

我有一个带有照片标题和网址的 RSS 提要,我想在这些照片中进行构建。做这个的最好方式是什么?我使用 MWPhotoBrowser,插入照片的方法是:

self.photos = [NSMutableArray array];
[photos addObject:[MWPhoto photoWithFilePath:[[NSBundle mainBundle] pathForResource:@"photo2l" ofType:@"jpg"]]];
[photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3629/3339128908_7aecabc34b.jpg"]]];
[photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3590/3329114220_5fbc5bc92b.jpg"]]];

如何用 RSS 做到这一点?

谢谢!

4

1 回答 1

1

如果您想从 RSS 提要创建照片查看器,我建议您查看MWFeedParser。您可以轻松获取每个项目的标题和 url,并根据需要显示它们。

1 - 使用 MWFeedParser,解析您的提要:

//feedURL would be your Photo RSS Feed
feedParser = [[MWFeedParser alloc] initWithFeedURL:feedURL];

2 - 在 MWFeedParser 委托方法 didParseFeedItem 中,将项目的链接添加到您的照片数组:

-(void)feedParser:(MWFeedParser *)parser didParseFeedItem:(MWFeedItem *)item{
    if (item) [photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:item.link]]];
}

现在照片数组包含了你所有的 MWPhoto,你可以随心所欲地使用它们!

于 2013-02-19T18:26:51.840 回答