1

I am working a rss reader app for iphone . What are my options for displaying entry summary in rss feed ( which could be html) in a tableviewcell without compromising scroll performance . I dont control the feed so html in summary section is out of my control .

I am thinking of uiwebview would be my last option ( so rss feeds have images and stuff in there, unfortunately ) . I was thinking if there was a way to extract summary text from html.

Jon Seigel
  • 12,251
  • 8
  • 58
  • 92
Surya
  • 4,922
  • 8
  • 41
  • 54

3 Answers3

1

You can use a WebKit view, UIWebView to present the feed and add it a subview to the UITableViewCell.

You need to worry about the cell height and making the UIWebView non-scrollable.

notnoop
  • 58,763
  • 21
  • 123
  • 144
0

I recently saw a presentation on Three20 (http://groups.google.com/group/three20/) that included a few things that might help you.

This is the specific thing I'm referring to: http://mattvague.com/three20-custom-cells-iphone-tutorial

John Boker
  • 82,559
  • 17
  • 97
  • 130
0

If anyone is interested I just made a new up-to-date version of my custom cells tutorial, check it out at http://mattvague.com/three20-tttableitem-tutorial

Cheers!