I'd like to get the first image URL of an post from this rss file: http://www.macnotes.de/feed/
How can I do this in Swift?
I got the description, the title an the author like this:
let item = feedItems[indexPath.row] as MWFeedItem
let vc = ViewController()
vc.text.text = item.description
vc.author.text = item.author
vc.layer.text = item.title