iPhone RSS thumbnail

Posted on Stack Overflow See other posts from Stack Overflow
Published on 2009-03-02T07:50:46Z Indexed on 2010/06/12 12:03 UTC
Read the original article Hit count: 273

Filed under:
|
|
|
|

I have a simple RSS reader. Stories are downloaded, put into a UITableView, and when you click it, each story loads in a UIWebView. It works great. Now though, I'd like to incorporate an image on the left side (like you'd see in the YouTube app). However, since my app pulls from an RSS feed, I can't simply specify image X to appear in row X because row X will be row Y tomorrow, and things will get out of order, you know? I am currently pulling from a YouTube RSS feed, and can get the video title, description, publication date, but I'm stuck as to how to pull the little thumbnail besides each entry in the feed.

As you can probably tell, I'm a coding newbie (this being my first application other than a Hello World app) and I'm getting so frustrated by my own lack of knowledge.

Thanks!

BTW, here's some sample code:

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict{    		
    //NSLog(@"found this element: %@", elementName);
    if (currentElement) {
    	[currentElement release];
    	currentElement = nil;
    }
    currentElement = [elementName copy];
    if ([elementName isEqualToString:@"item"]) {
    	// clear out our 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 *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName{     
    //NSLog(@"ended element: %@", elementName);
    if ([elementName isEqualToString:@"item"]) {
    	// save values to an item, then store that item into the array...
    	[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);
    }

}

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string{
    //NSLog(@"found characters: %@", string);
    // save the characters for the current item...
    if ([currentElement isEqualToString:@"title"]) {
    	[currentTitle appendString:string];
    } else if ([currentElement isEqualToString:@"link"]) {
    	[currentLink appendString:string];
    } else if ([currentElement isEqualToString:@"description"]) {
    	[currentSummary appendString:string];
    } else if ([currentElement isEqualToString:@"pubDate"]) {
    	[currentDate appendString:string];
    }

}

© Stack Overflow or respective owner

Related posts about iphone

Related posts about rss