Are you getting any errors in your console log? If you need to see how, use this guide:
http://docs.coronalabs.com/guide/basics/debugging/index.html
Now RSS supports an <image> tag that gets a single image for the entire feed. You can think of this as like the logo/masthead of the site. It’s not a per-item image. If I’m being honest, I didn’t see much of a need for that tag when i was building this for my use back in the day. It looks like I may not be parsing that correctly.
However images that go with each article come in with the “<enclosure>” tag. The items.enclosures entry holds a table of all the images attached. You will get a URL for each image in the table. Its your responsibility to download and display the image using display.loadRemoteImage(), network.download() etc.
Now if you’re using the Business App Sample from that tutorial, the webpage.lua module should show the enclosures. The code is pretty sensitive. For instance, it’s only going to draw a thumbnail of the enclosure if it has a mime type of image/jpeg image/jpg or image/png. It’s a case sensitive check too.
I looked at the gizmodo feed and they are not using enclosures. Instead they are including HTML code inside a CDATA tag in the description. If you pump that through a webView you will get the image. However the Business App Sample does not put a webView in the tableView rows. It only shows it when you tap on the row.
Rob