所以我正在为iPhone制作一个非常简单的RSS阅读器,但是当我启动它时,没有任何项目出现在我正在使用的Feed中。它适用于其他人,但不适用于feeds.feedburner / ParadiseBeats feedburner是否使用与其他Feed不同的系统?我最初使用的Feed是technobuffalo.com/feeds,可以很好地显示故事。
以下是相关代码:
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
if ([stories count] == 0) {
NSString *path = @"http://feeds.feedburner.com/ParadiseBeats";
[self parseXMLFileAtURL:path];
}
}
和元素解析......
-(void)parser:(NSXMLParser *) parser didStartElement:(NSString *) elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *__strong)qName attributes:(NSDictionary *__strong)attributeDict {
currentElement = [elementName copy];
if([elementName isEqualToString:@"item"]){
//clear out story item caches...
item = [[NSMutableDictionary alloc] init];
currentTitle = [[NSMutableString alloc] init];
currentDate = [[NSMutableString alloc] init];
currentSummary = [[NSMutableString alloc] init];
currentLink = [[NSMutableString alloc] init];
}
}
-(void)parser:(NSXMLParser *)parser didEndElement:(NSString *__strong)elementName namespaceURI:(NSString *__strong)namespaceURI qualifiedName:(NSString *__strong)qName {
if ([elementName isEqualToString:@"item"]) {
[item setObject:currentTitle forKey:@"title"];
[item setObject:currentLink forKey:@"link"];
[item setObject:currentSummary forKey:@"summary"];
[item setObject:currentDate forKey:@"date"];
[stories addObject:[item copy]];
NSLog(@"adding story: %@", currentTitle);
}
}
答案 0 :(得分:1)
您提到的Feed可能对其最终未使用上述代码解析的RSS具有不同的属性。
我对其他Feed也有同样的问题,虽然有些Feed可以正常工作。